This is an automated email from the ASF dual-hosted git repository. aaronai pushed a commit to branch java in repository https://gitbox.apache.org/repos/asf/rocketmq-apis.git
commit a616f667210232c638d2b7d63c6d1a77972a9054 Author: 凌楚 <[email protected]> AuthorDate: Mon Mar 28 14:52:51 2022 +0800 Initial commit --- .gitignore | 27 +++++++++++++++++++++++++++ pom.xml | 16 ++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..472bd54 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Intellij IDEA +.idea/ +out/ +*.ipr +*.iml +*.iws + +# Eclipse +.classpath +.project +.settings/ +.metadata/ +.factorypath + +# MacOS +**/.DS_Store + +# Visual Studio Code +.vscode/ + +# Maven +target/ +*.ser +*.ec +dependency-reduced-pom.xml +.flattened-pom.xml + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..8ffa424 --- /dev/null +++ b/pom.xml @@ -0,0 +1,16 @@ +<?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-proto</artifactId> + <version>5.0.0-SNAPSHOT</version> + + <properties> + <maven.compiler.source>8</maven.compiler.source> + <maven.compiler.target>8</maven.compiler.target> + </properties> + +</project> \ No newline at end of file
