diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-12-08 00:32:34 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-12-08 00:32:34 -0800 |
| commit | 36d1e739e6d0c6ad55247b6b3ea6b1b6ebdce447 (patch) | |
| tree | 90ae8da8eccaebd9d03c51cb8012bf50020bcc55 /other/java/hdfs | |
| parent | adf12c88253f603b1b06482b58bca72bb2924c4b (diff) | |
| download | seaweedfs-1.11.tar.xz seaweedfs-1.11.zip | |
1.111.11
Diffstat (limited to 'other/java/hdfs')
| -rw-r--r-- | other/java/hdfs/pom.xml | 72 |
1 files changed, 68 insertions, 4 deletions
diff --git a/other/java/hdfs/pom.xml b/other/java/hdfs/pom.xml index 55dcff3b6..522d39aa2 100644 --- a/other/java/hdfs/pom.xml +++ b/other/java/hdfs/pom.xml @@ -4,9 +4,22 @@ 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>seaweedfs</groupId> + <groupId>com.github.chrislusf</groupId> <artifactId>seaweedfs-hadoop-client</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0</version> + + <parent> + <groupId>org.sonatype.oss</groupId> + <artifactId>oss-parent</artifactId> + <version>9</version> + </parent> + + <distributionManagement> + <snapshotRepository> + <id>ossrh</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + </snapshotRepository> + </distributionManagement> <build> <plugins> <plugin> @@ -46,6 +59,57 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.5</version> + <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.7</version> + <extensions>true</extensions> + <configuration> + <serverId>ossrh</serverId> + <nexusUrl>https://oss.sonatype.org/</nexusUrl> + <autoReleaseAfterClose>true</autoReleaseAfterClose> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>2.2.1</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar-no-fork</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>2.9.1</version> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> @@ -60,9 +124,9 @@ <version>${hadoop.version}</version> </dependency> <dependency> - <groupId>seaweedfs</groupId> + <groupId>com.github.chrislusf</groupId> <artifactId>seaweedfs-client</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> |
