diff options
Diffstat (limited to 'other/java/client/pom.xml')
| -rw-r--r-- | other/java/client/pom.xml | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/other/java/client/pom.xml b/other/java/client/pom.xml index 3c983f9e5..7e5c3f732 100644 --- a/other/java/client/pom.xml +++ b/other/java/client/pom.xml @@ -3,15 +3,32 @@ 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.16.3</protobuf.version> @@ -75,12 +92,6 @@ </dependency> </dependencies> - <distributionManagement> - <snapshotRepository> - <id>ossrh</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> - </distributionManagement> <build> <extensions> <extension> @@ -134,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> |
