-
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.
* Revert "Fix gpg ioctl issue (#262)" This reverts commit ea73d2d. * Revert "Automate deployment to OSSRH/Docker Hub (#258)" This reverts commit 5c8d430.
- Loading branch information
Showing
8 changed files
with
16 additions
and
197 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,54 +24,6 @@ | |
<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> | ||
|
@@ -89,18 +41,11 @@ | |
<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>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
<id>github</id> | ||
<name>GitHub Nessie Apache Maven Packages</name> | ||
<url>https://maven.pkg.github.com/projectnessie/nessie</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
|
@@ -563,11 +508,6 @@ | |
<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> | ||
|
@@ -1091,54 +1031,5 @@ 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> | ||
<configuration> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</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