diff options
Diffstat (limited to 'other/java/client/pom.xml.deploy')
| -rw-r--r-- | other/java/client/pom.xml.deploy | 59 |
1 files changed, 37 insertions, 22 deletions
diff --git a/other/java/client/pom.xml.deploy b/other/java/client/pom.xml.deploy index cf98f2467..7e5c3f732 100644 --- a/other/java/client/pom.xml.deploy +++ b/other/java/client/pom.xml.deploy @@ -3,21 +3,38 @@ 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>com.github.chrislusf</groupId> + <groupId>com.seaweedfs</groupId> <artifactId>seaweedfs-client</artifactId> <version>3.71</version> - <parent> - <groupId>org.sonatype.oss</groupId> - <artifactId>oss-parent</artifactId> - <version>9</version> - </parent> + <name>SeaweedFS Java Client</name> + <description>A java client for SeaweedFS.</description> + <url>https://github.com/seaweedfs/seaweedfs</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> + <name>Chris Lu</name> + <email>chris.lu@gmail.com</email> + <organization>SeaweedFS</organization> + <organizationUrl>https://seaweedfs.com</organizationUrl> + </developer> + </developers> + <scm> + <connection>scm:git:git://github.com/seaweedfs/seaweedfs.git</connection> + <developerConnection>scm:git:ssh://github.com:seaweedfs/seaweedfs.git</developerConnection> + <url>https://github.com/seaweedfs/seaweedfs/tree/master</url> + </scm> <properties> - <protobuf.version>3.9.1</protobuf.version> + <protobuf.version>3.16.3</protobuf.version> <!-- follow https://github.com/grpc/grpc-java --> - <grpc.version>1.23.0</grpc.version> - <guava.version>28.0-jre</guava.version> + <grpc.version>1.53.0</grpc.version> + <guava.version>32.0.0-jre</guava.version> </properties> <dependencies> @@ -65,17 +82,16 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>4.12</version> + <version>4.13.1</version> <scope>test</scope> </dependency> + <dependency> + <groupId>javax.annotation</groupId> + <artifactId>javax.annotation-api</artifactId> + <version>1.3.2</version> + </dependency> </dependencies> - <distributionManagement> - <snapshotRepository> - <id>ossrh</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> - </distributionManagement> <build> <extensions> <extension> @@ -129,14 +145,13 @@ </executions> </plugin> <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.8</version> + <groupId>org.sonatype.central</groupId> + <artifactId>central-publishing-maven-plugin</artifactId> + <version>0.5.0</version> <extensions>true</extensions> <configuration> - <serverId>ossrh</serverId> - <nexusUrl>https://oss.sonatype.org/</nexusUrl> - <autoReleaseAfterClose>true</autoReleaseAfterClose> + <publishingServerId>central</publishingServerId> + <autoPublish>true</autoPublish> </configuration> </plugin> <plugin> |
