Skip to content

Commit

Permalink
Add back exec-maven-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Dec 5, 2023
1 parent 71f02c1 commit 663ff22
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,33 @@
<serviceName>travis-ci</serviceName>
</configuration>
</plugin>
<plugin>
<!--
We need this for updating the submodule during release. Maven SCM
doesn't support this itself apparently. See
https://github.com/apache/maven-scm/pull/179
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<!--
We are using 3.0.0 as 3.1.1 fails due to this issue:
https://github.com/mojohaus/exec-maven-plugin/issues/373
-->
<version>3.0.0</version>
<executions>
<execution>
<phase>initialize</phase>
<id>invoke build</id>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>git</executable>
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
Expand Down

0 comments on commit 663ff22

Please sign in to comment.