Skip OSGi testsuite if 'no-osgi' profile is active

This commit is contained in:
Trustin Lee 2013-03-14 17:21:53 +09:00
parent 5fe2e7fc9d
commit 8372e2ffc9
3 changed files with 12 additions and 12 deletions

View File

@ -440,7 +440,7 @@
<version>2.3.2</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-P release,sonatype-oss-release,full</arguments>
<arguments>-P release,sonatype-oss-release,full,no-osgi</arguments>
<autoVersionSubmodules>true</autoVersionSubmodules>
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
<tagNameFormat>netty-@{project.version}</tagNameFormat>

View File

@ -30,6 +30,17 @@
<name>Netty/Testsuite/OSGi</name>
<description>parent for build constrains modules</description>
<!-- This test is guaranteed to fail during the release phase; skip'em all -->
<profiles>
<profile>
<id>no-osgi</id>
<properties>
<skipITs>true</skipITs>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
<modules>
<module>testsuite-osgi-split</module>
<module>testsuite-osgi-deps</module>

View File

@ -197,17 +197,6 @@
</dependencies>
<!-- This test is guaranteed to fail during the release phase; skip'em all -->
<profiles>
<profile>
<id>release</id>
<properties>
<skipITs>true</skipITs>
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
<build>
<plugins>