Uncommented invoker plugin but commented phase binding.

Integration tests are not held during normal package but still available via "mvn integration-test" command.
This commit is contained in:
Daniel Penkin
2012-05-09 13:58:40 +04:00
parent 9f13d3b263
commit 43d64f2265
+3 -5
View File
@@ -56,7 +56,6 @@
<version>2.9</version> <version>2.9</version>
</plugin> </plugin>
<!--
<plugin> <plugin>
<artifactId>maven-invoker-plugin</artifactId> <artifactId>maven-invoker-plugin</artifactId>
<version>1.5</version> <version>1.5</version>
@@ -66,15 +65,15 @@
<pomIncludes> <pomIncludes>
<pomInclude>*/pom.xml</pomInclude> <pomInclude>*/pom.xml</pomInclude>
</pomIncludes> </pomIncludes>
&lt;!&ndash;This could speed up test by providing local repo as remote repo for test but might be tricky on different OS&ndash;&gt; <!--This could speed up test by providing local repo as remote repo for test but might be tricky on different OS-->
&lt;!&ndash;<settingsFile>src/it/settings.xml</settingsFile>&ndash;&gt; <!--<settingsFile>src/it/settings.xml</settingsFile>-->
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<postBuildHookScript>verify.bsh</postBuildHookScript> <postBuildHookScript>verify.bsh</postBuildHookScript>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>integration-test</id> <id>integration-test</id>
<phase>package</phase> <!--<phase>package</phase>-->
<goals> <goals>
<goal>install</goal> <goal>install</goal>
<goal>run</goal> <goal>run</goal>
@@ -82,7 +81,6 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
-->
</plugins> </plugins>
</build> </build>
</project> </project>