Skip to content

Commit

Permalink
Align with sundrio
Browse files Browse the repository at this point in the history
  • Loading branch information
BarDweller authored Jun 20, 2024
1 parent 6b7b3ee commit 86bee58
Showing 1 changed file with 40 additions and 9 deletions.
49 changes: 40 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down Expand Up @@ -279,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>
Expand Down

0 comments on commit 86bee58

Please sign in to comment.