| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
| <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.eventbridge</groupId> |
| <artifactId>demo</artifactId> |
| <version>0.0.0</version> |
| <packaging>jar</packaging> |
| <name>demo</name> |
| <description>EventBridge SDK demo for Java |
| </description> |
| <url></url> |
| <licenses> |
| <license> |
| <name>The Apache License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| </license> |
| </licenses> |
| <developers> |
| <developer> |
| <id>ludi</id> |
| <name>EventBridge SDK</name> |
| <email>zjuludi@gmail.com</email> |
| </developer> |
| </developers> |
| <distributionManagement> |
| <snapshotRepository> |
| <id>sonatype-nexus-snapshots</id> |
| <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| </snapshotRepository> |
| <repository> |
| <id>sonatype-nexus-staging</id> |
| <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| </repository> |
| </distributionManagement> |
| <scm> |
| <connection></connection> |
| <developerConnection></developerConnection> |
| <url></url> |
| </scm> |
| <dependencies> |
| <dependency> |
| <groupId>com.aliyun</groupId> |
| <artifactId>tea-util</artifactId> |
| <version>0.2.23</version> |
| </dependency> |
| <dependency> |
| <groupId>com.aliyun</groupId> |
| <artifactId>tea-openapi</artifactId> |
| <version>0.3.6</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.rocketmq.eventbridge</groupId> |
| <artifactId>sdk</artifactId> |
| <version>0.0.0</version> |
| </dependency> |
| <dependency> |
| <groupId>com.aliyun</groupId> |
| <artifactId>tea-console</artifactId> |
| <version>0.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>com.aliyun</groupId> |
| <artifactId>tea</artifactId> |
| <version>1.1.14</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.6.1</version> |
| <configuration> |
| <source>8</source> |
| <target>8</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| <version>1.6</version> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| <executions> |
| <execution> |
| <id>sign-artifacts</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.sonatype.plugins</groupId> |
| <artifactId>nexus-staging-maven-plugin</artifactId> |
| <version>1.6.3</version> |
| <extensions>true</extensions> |
| <configuration> |
| <serverId>sonatype-nexus-staging</serverId> |
| <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>3.1.1</version> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| <doclint>none</doclint> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.22.1</version> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |