-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate deployment to OSSRH/Docker Hub (#258)
* Add Javadoc and Source mojos for release profile Update release profile to generate source and javadoc jars for the project. * Change distribution management to OSSRH * Add maven-gpg-plugin Add maven-gpg-plugin:sign goal to the release profile * Add extra project information * Fix spark3 dependencies * Add missing description * Switch to OSSRH/Docker Hub for packages * fixing pr maven cache * Add javadoc execution to pull requests
- Loading branch information
Showing
8 changed files
with
191 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,54 @@ | |
<version>0.1-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>Nessie</name> | ||
<description>Data Ops for Data Lakes</description> | ||
<url>https://projectnessie.org</url> | ||
<organization> | ||
<name>Project Nessie</name> | ||
<url>https://projectnessie.org</url> | ||
</organization> | ||
<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>jacques-n</id> | ||
<name>Jacques Nadeau</name> | ||
<url>https://github.com/jacques-n</url> | ||
</developer> | ||
<developer> | ||
<id>rymurr</id> | ||
<name>Ryan Murray</name> | ||
<url>https://github.com/rymurr</url> | ||
</developer> | ||
<developer> | ||
<id>laurentgo</id> | ||
<name>Laurent Goujon</name> | ||
<url>https://github.com/laurentgo</url> | ||
</developer> | ||
</developers> | ||
<contributors> | ||
<contributor> | ||
<name>Ryan Tse</name> | ||
<url>https://github.com/ryantse</url> | ||
</contributor> | ||
</contributors> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>Project Nessie List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://groups.google.com/g/projectnessie</archive> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<modules> | ||
<module>model</module> | ||
<module>backends</module> | ||
|
@@ -41,11 +89,18 @@ | |
<url>https://github.com/projectnessie/nessie/tree/${project.scm.tag}</url> | ||
<tag>main</tag> | ||
</scm> | ||
<issueManagement> | ||
<system>Github</system> | ||
<url>https://github.com/projectnessie/nessie/issues</url> | ||
</issueManagement> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub Nessie Apache Maven Packages</name> | ||
<url>https://maven.pkg.github.com/projectnessie/nessie</url> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
|
@@ -508,6 +563,11 @@ | |
<artifactId>maven-plugin-plugin</artifactId> | ||
<version>3.6.0</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
</plugin> | ||
|
||
<!-- 3rd party plugins --> | ||
<plugin> | ||
|
@@ -1031,5 +1091,48 @@ limitations under the License. | |
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
<id>release</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>default-soucesJar</id> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>default-javadocJar</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>default-sign</id> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters