Skip to content

Commit

Permalink
build: Enable exec-maven plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-simons committed Feb 28, 2024
1 parent 9a4d862 commit 3823b9b
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,6 @@
<argument>${project.version}</argument>
<argument>${isDryRun}</argument>
</arguments>
<skip>true</skip>
</configuration>
</execution>
</executions>
Expand Down Expand Up @@ -740,6 +739,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>prepare-release</id>
<goals>
<goal>exec</goal>
</goals>
<configuration combine.self="append">
<skip>false</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down

0 comments on commit 3823b9b

Please sign in to comment.