Fixed mvn run for packagetests over external-example.

This commit is contained in:
Khalid Shakir 2014-02-17 16:43:40 +08:00
parent 70ecce2a0f
commit 4670c87313
1 changed files with 19 additions and 1 deletions

View File

@ -26,6 +26,9 @@
<sting.committests.skipped>true</sting.committests.skipped>
<sting.unittests.skipped>${sting.committests.skipped}</sting.unittests.skipped>
<sting.integrationtests.skipped>${sting.committests.skipped}</sting.integrationtests.skipped>
<!-- This flag is used by the package tests to disable re-shading -->
<sting.shade.phase>package</sting.shade.phase>
</properties>
<repositories>
@ -128,7 +131,7 @@
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<phase>${sting.shade.phase}</phase>
<goals>
<goal>shade</goal>
</goals>
@ -246,4 +249,19 @@
</plugins>
</build>
<profiles>
<profile>
<id>packagetests-enabled</id>
<activation>
<property>
<name>sting.packagetests.enabled</name>
<value>true</value>
</property>
</activation>
<properties>
<sting.shade.phase>none</sting.shade.phase>
</properties>
</profile>
</profiles>
</project>