This is an automated email from the ASF dual-hosted git repository. aaronai pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git
commit f05bbbfa824cfb582d8cefe7228c73c244ae13ef Author: Aaron Ai <[email protected]> AuthorDate: Sat Jun 18 05:11:40 2022 +0800 Setup basic module for java --- java/client-apis/pom.xml | 18 ++++++++++++++++++ java/pom.xml | 19 +++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/java/client-apis/pom.xml b/java/client-apis/pom.xml new file mode 100644 index 0000000..5a39b91 --- /dev/null +++ b/java/client-apis/pom.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>rocketmq-client-java-parent</artifactId> + <groupId>org.apache.rocketmq</groupId> + <version>5.0.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>rocketmq-client-apis</artifactId> + + <properties> + <maven.compiler.release>8</maven.compiler.release> + </properties> + +</project> \ No newline at end of file diff --git a/java/pom.xml b/java/pom.xml new file mode 100644 index 0000000..049a500 --- /dev/null +++ b/java/pom.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.rocketmq</groupId> + <artifactId>rocketmq-client-java-parent</artifactId> + <packaging>pom</packaging> + <version>5.0.0-SNAPSHOT</version> + <modules> + <module>apis</module> + </modules> + + <properties> + <maven.compiler.release>8</maven.compiler.release> + </properties> + +</project> \ No newline at end of file
