Skip to content

Commit

Permalink
Don't use maven exec
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Pielage <pandrex247@hotmail.com>
  • Loading branch information
Pandrex247 committed Jan 29, 2024
1 parent 501082e commit 9181976
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
<deploy.skip>true</deploy.skip>
<javadoc.skip>true</javadoc.skip>
<source.skip>true</source.skip>
<license-maven-plugin.version>2.3.0</license-maven-plugin.version>
<license-maven-plugin.version>2.4.0</license-maven-plugin.version>
</properties>

<profiles>
Expand Down Expand Up @@ -336,22 +336,16 @@
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<inherited>false</inherited>
<executions>
<execution>
<id>download-and-aggregate-licenses</id>
<phase>validate</phase>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
<goal>aggregate-add-third-party</goal>
</goals>
<configuration>
<executable>mvn</executable>
<arguments>
<argument>license:aggregate-add-third-party</argument>
</arguments>
</configuration>
</execution>
</executions>

Expand Down

0 comments on commit 9181976

Please sign in to comment.