-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: align secrets for gpg private key and passphrase with actual (#65) secrets * fix: gpg configuration (#67) * Build updates (#70) * Build updates * Align with sundrio * align with sundrio --------- Co-authored-by: Ioannis Canellos <[email protected]>
- Loading branch information
1 parent
cec2270
commit da1393d
Showing
2 changed files
with
52 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<name>Snowdrop :: Java Buildpack Client :: Project</name> | ||
<description>A Buildpack client implementation written in Java</description> | ||
|
||
<url>https://snowdrop.dev</url> | ||
<url>http://github.com/snowdrop/java-buildpack-client</url> | ||
<inceptionYear>2020</inceptionYear> | ||
|
||
<organization> | ||
|
@@ -34,8 +34,8 @@ | |
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git@github.com:snowdrop/java-buildpack-client.git</connection> | ||
<developerConnection>scm:git:[email protected]:snowdrop/java-buildpack-client.git</developerConnection> | ||
<connection>scm:git:git://github.com/snowdrop/java-buildpack-client.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]:snowdrop/java-buildpack-client.git</developerConnection> | ||
<url>http://github.com/snowdrop/java-buildpack-client</url> | ||
<tag>${project.version}</tag> | ||
</scm> | ||
|
@@ -46,6 +46,10 @@ | |
<name>Sonatype Staging Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>oss-sonatype-snapshots</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<properties> | ||
|
@@ -63,15 +67,17 @@ | |
<version.mockito>3.12.4</version.mockito> | ||
|
||
<!-- Maven Plugin Versions --> | ||
<version.maven-compiler-plugin>3.8.1</version.maven-compiler-plugin> | ||
<version.maven-surefire-plugin>2.22.0</version.maven-surefire-plugin> | ||
<version.maven-failsafe-plugin>2.22.0</version.maven-failsafe-plugin> | ||
<version.maven-compiler-plugin>3.13.0</version.maven-compiler-plugin> | ||
<version.maven-surefire-plugin>3.3.0</version.maven-surefire-plugin> | ||
<version.maven-failsafe-plugin>3.3.0</version.maven-failsafe-plugin> | ||
|
||
<!-- Release Plugins --> | ||
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin> | ||
<version.maven-release-plugin>3.1.0</version.maven-release-plugin> | ||
<version.maven-gpg-plugin>3.2.4</version.maven-gpg-plugin> | ||
<version.maven-enforcer-plugin>1.3.1</version.maven-enforcer-plugin> | ||
<version.maven-javadoc-plugin>2.10.3</version.maven-javadoc-plugin> | ||
<version.maven-source-plugin>2.4</version.maven-source-plugin> | ||
<version.maven-javadoc-plugin>3.7.0</version.maven-javadoc-plugin> | ||
<version.maven-source-plugin>3.3.1</version.maven-source-plugin> | ||
<version.nexus-staging-maven-plugin>1.6.13</version.nexus-staging-maven-plugin> | ||
</properties> | ||
|
||
<modules> | ||
|
@@ -212,6 +218,13 @@ | |
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
<configuration> | ||
<!-- This is necessary for gpg to not try to use the pinentry programs --> | ||
<gpgArguments> | ||
<arg>--pinentry-mode</arg> | ||
<arg>loopback</arg> | ||
</gpgArguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
@@ -272,6 +285,31 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>${version.maven-release-plugin}</version> | ||
<configuration> | ||
<autoVersionSubmodules>true</autoVersionSubmodules> | ||
<tagNameFormat>@{project.version}</tagNameFormat> | ||
<pushChanges>false</pushChanges> | ||
<localCheckout>true</localCheckout> | ||
<remoteTagging>false</remoteTagging> | ||
<arguments>-DskipTests=true</arguments> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.sonatype.plugins</groupId> | ||
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>${version.nexus-staging-maven-plugin}</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<serverId>oss-sonatype-staging</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
<autoReleaseAfterClose>true</autoReleaseAfterClose> | ||
<stagingProgressTimeoutMinutes>60</stagingProgressTimeoutMinutes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
|