Skip to content

Commit

Permalink
STAMP-project#21 Move verify_pitmp.sh into profile "verify"
Browse files Browse the repository at this point in the history
  • Loading branch information
nrainer committed Sep 3, 2018
1 parent b68e088 commit 9d30dab
Showing 1 changed file with 31 additions and 24 deletions.
55 changes: 31 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,30 +195,6 @@
</configuration>
</plugin>

<!-- Testing : run verify_pitmp.sh after mvn install -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>verify-pitmp</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>verify_pitmp.sh</executable>
<arguments>
<argument>-runfrompom</argument>
</arguments>
</configuration>
</plugin>
<!--
-->

<!-- Testing reporting and coverage -->
<plugin>
<groupId>org.jacoco</groupId>
Expand All @@ -244,6 +220,37 @@
</build>

<profiles>

<profile>
<id>verify</id>

<build>
<plugins>
<!-- Testing : run verify_pitmp.sh after mvn install -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>verify-pitmp</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>verify_pitmp.sh</executable>
<arguments>
<argument>-runfrompom</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>deploy-release</id>
<!-- This profile should be used for deploy and release actions
Expand Down

0 comments on commit 9d30dab

Please sign in to comment.