Fixed mvn run for packagetests over external-example.
This commit is contained in:
parent
70ecce2a0f
commit
4670c87313
|
|
@ -26,6 +26,9 @@
|
||||||
<sting.committests.skipped>true</sting.committests.skipped>
|
<sting.committests.skipped>true</sting.committests.skipped>
|
||||||
<sting.unittests.skipped>${sting.committests.skipped}</sting.unittests.skipped>
|
<sting.unittests.skipped>${sting.committests.skipped}</sting.unittests.skipped>
|
||||||
<sting.integrationtests.skipped>${sting.committests.skipped}</sting.integrationtests.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>
|
</properties>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
|
|
@ -128,7 +131,7 @@
|
||||||
<version>2.1</version>
|
<version>2.1</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>package</phase>
|
<phase>${sting.shade.phase}</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>shade</goal>
|
<goal>shade</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
|
@ -246,4 +249,19 @@
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</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>
|
</project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue