Skip to content

Commit

Permalink
Configures release parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Jan 31, 2022
1 parent fccf26b commit dae5f14
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
2 changes: 2 additions & 0 deletions equalsverifier-release-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

<properties>
<maven.install.skip>false</maven.install.skip>
<maven.deploy.skip>false</maven.deploy.skip>
<gpg.skip>false</gpg.skip>
</properties>

<build>
Expand Down
2 changes: 2 additions & 0 deletions equalsverifier-release-nodep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

<properties>
<maven.install.skip>false</maven.install.skip>
<maven.deploy.skip>false</maven.deploy.skip>
<gpg.skip>false</gpg.skip>
</properties>

<build>
Expand Down
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@
<properties>
<encoding>UTF-8</encoding>
<version.java.base>8</version.java.base>
<maven.install.skip>true</maven.install.skip>
<maven.javadoc.skip>true</maven.javadoc.skip>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
<gpg.skip>true</gpg.skip>

<argline.module></argline.module>
<argline.preview></argline.preview>
Expand Down Expand Up @@ -103,6 +105,7 @@
<version.maven-enforcer-plugin>3.0.0</version.maven-enforcer-plugin>
<version.maven-jar-plugin>3.2.2</version.maven-jar-plugin>
<version.maven-javadoc-plugin>3.3.1</version.maven-javadoc-plugin>
<version.maven-release-plugin>2.5.3</version.maven-release-plugin>
<version.maven-shade-plugin>3.2.4</version.maven-shade-plugin>
<version.maven-surefire-plugin>2.22.2</version.maven-surefire-plugin>
<version.pitest.github>0.1.0</version.pitest.github>
Expand Down Expand Up @@ -163,6 +166,18 @@
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${version.maven-release-plugin}</version>
<configuration>
<tagNameFormat>equalsverifier-@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit dae5f14

Please sign in to comment.