diff options
| author | chrislu <chris.lu@gmail.com> | 2024-08-12 17:30:18 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2024-08-12 17:30:21 -0700 |
| commit | 915f9f50547daae9c046ef0dab38ef768ce3fc0c (patch) | |
| tree | 1da8c52869147c7caa06371ca340445f209602c4 /other/java/hdfs3/pom.xml | |
| parent | 9a0b71e87450e745964ced9e0de3c78858ff1094 (diff) | |
| download | seaweedfs-915f9f50547daae9c046ef0dab38ef768ce3fc0c.tar.xz seaweedfs-915f9f50547daae9c046ef0dab38ef768ce3fc0c.zip | |
update java client to 3.71, also adjust the groupId
Diffstat (limited to 'other/java/hdfs3/pom.xml')
| -rw-r--r-- | other/java/hdfs3/pom.xml | 48 |
1 files changed, 29 insertions, 19 deletions
diff --git a/other/java/hdfs3/pom.xml b/other/java/hdfs3/pom.xml index 09b990839..067d649ff 100644 --- a/other/java/hdfs3/pom.xml +++ b/other/java/hdfs3/pom.xml @@ -9,22 +9,33 @@ <hadoop.version>3.2.4</hadoop.version> </properties> - <groupId>com.github.chrislusf</groupId> + <groupId>com.seaweedfs</groupId> <artifactId>seaweedfs-hadoop3-client</artifactId> <version>${seaweedfs.client.version}</version> - <parent> - <groupId>org.sonatype.oss</groupId> - <artifactId>oss-parent</artifactId> - <version>9</version> - </parent> + <name>SeaweedFS HDFS3 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> - <distributionManagement> - <snapshotRepository> - <id>ossrh</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> - </distributionManagement> <build> <plugins> <plugin> @@ -104,14 +115,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> @@ -151,7 +161,7 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>com.github.chrislusf</groupId> + <groupId>com.seaweedfs</groupId> <artifactId>seaweedfs-client</artifactId> <version>${seaweedfs.client.version}</version> </dependency> |
