diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-30 00:07:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-30 00:07:03 +0200 |
commit | c6dab978b4e06918c7b96684a06c50c8aca74315 (patch) | |
tree | d16b803b094b8984ad722d87ae23d709da37f9df /server | |
parent | 73e2ceadeb3d0f44d3a96a07947e26531c409053 (diff) | |
download | sonarqube-c6dab978b4e06918c7b96684a06c50c8aca74315.tar.gz sonarqube-c6dab978b4e06918c7b96684a06c50c8aca74315.zip |
Maven profiles for each technical stack
and remove sonar-channel helpers from sonar-testing-harness
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-process-monitor/pom.xml | 12 | ||||
-rw-r--r-- | server/sonar-process/pom.xml | 8 | ||||
-rw-r--r-- | server/sonar-process/src/test/java/org/sonar/process/ConfigurationUtilsTest.java | 2 | ||||
-rw-r--r-- | server/sonar-process/src/test/java/org/sonar/process/LoopbackAddressTest.java | 2 | ||||
-rw-r--r-- | server/sonar-process/src/test/java/org/sonar/process/NetworkUtilsTest.java | 2 | ||||
-rw-r--r-- | server/sonar-process/src/test/java/org/sonar/process/ProcessUtilsTest.java | 4 | ||||
-rw-r--r-- | server/sonar-search/pom.xml | 12 | ||||
-rw-r--r-- | server/sonar-server/pom.xml | 7 | ||||
-rw-r--r-- | server/sonar-web/pom.xml | 3 | ||||
-rw-r--r-- | server/sonar-ws-client/pom.xml | 7 |
10 files changed, 54 insertions, 5 deletions
diff --git a/server/sonar-process-monitor/pom.xml b/server/sonar-process-monitor/pom.xml index c169c7b0f29..af327fb1a60 100644 --- a/server/sonar-process-monitor/pom.xml +++ b/server/sonar-process-monitor/pom.xml @@ -82,4 +82,16 @@ </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/server/sonar-process/pom.xml b/server/sonar-process/pom.xml index 333cae57e6f..0e6a50a9f23 100644 --- a/server/sonar-process/pom.xml +++ b/server/sonar-process/pom.xml @@ -91,6 +91,14 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> + </plugins> </build> </project> diff --git a/server/sonar-process/src/test/java/org/sonar/process/ConfigurationUtilsTest.java b/server/sonar-process/src/test/java/org/sonar/process/ConfigurationUtilsTest.java index 4aa072a6eb3..cd92bbf4e7e 100644 --- a/server/sonar-process/src/test/java/org/sonar/process/ConfigurationUtilsTest.java +++ b/server/sonar-process/src/test/java/org/sonar/process/ConfigurationUtilsTest.java @@ -96,6 +96,6 @@ public class ConfigurationUtilsTest { @Test public void private_constructor() throws Exception { - TestUtils.assertPrivateConstructor(ConfigurationUtils.class); + assertThat(TestUtils.hasOnlyPrivateConstructors(ConfigurationUtils.class)).isTrue(); } } diff --git a/server/sonar-process/src/test/java/org/sonar/process/LoopbackAddressTest.java b/server/sonar-process/src/test/java/org/sonar/process/LoopbackAddressTest.java index b612e24342d..8ccafff1f66 100644 --- a/server/sonar-process/src/test/java/org/sonar/process/LoopbackAddressTest.java +++ b/server/sonar-process/src/test/java/org/sonar/process/LoopbackAddressTest.java @@ -52,6 +52,6 @@ public class LoopbackAddressTest { @Test public void private_constructor() throws Exception { - TestUtils.assertPrivateConstructor(LoopbackAddress.class); + assertThat(TestUtils.hasOnlyPrivateConstructors(LoopbackAddress.class)).isTrue(); } } diff --git a/server/sonar-process/src/test/java/org/sonar/process/NetworkUtilsTest.java b/server/sonar-process/src/test/java/org/sonar/process/NetworkUtilsTest.java index 0462f76707a..052c67d94fe 100644 --- a/server/sonar-process/src/test/java/org/sonar/process/NetworkUtilsTest.java +++ b/server/sonar-process/src/test/java/org/sonar/process/NetworkUtilsTest.java @@ -42,6 +42,6 @@ public class NetworkUtilsTest { @Test public void private_constructor() throws Exception { - TestUtils.assertPrivateConstructor(NetworkUtils.class); + assertThat(TestUtils.hasOnlyPrivateConstructors(NetworkUtils.class)).isTrue(); } } diff --git a/server/sonar-process/src/test/java/org/sonar/process/ProcessUtilsTest.java b/server/sonar-process/src/test/java/org/sonar/process/ProcessUtilsTest.java index ae1f53b2653..1a18d5983ae 100644 --- a/server/sonar-process/src/test/java/org/sonar/process/ProcessUtilsTest.java +++ b/server/sonar-process/src/test/java/org/sonar/process/ProcessUtilsTest.java @@ -22,10 +22,12 @@ package org.sonar.process; import org.junit.Test; import org.sonar.test.TestUtils; +import static org.fest.assertions.Assertions.assertThat; + public class ProcessUtilsTest { @Test public void private_constructor() throws Exception { - TestUtils.assertPrivateConstructor(ProcessUtils.class); + assertThat(TestUtils.hasOnlyPrivateConstructors(ProcessUtils.class)).isTrue(); } } diff --git a/server/sonar-search/pom.xml b/server/sonar-search/pom.xml index b35a7502868..93551819322 100644 --- a/server/sonar-search/pom.xml +++ b/server/sonar-search/pom.xml @@ -67,4 +67,16 @@ <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index 09bc1cd3431..0313612ad69 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -267,6 +267,13 @@ </archive> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> </plugins> </build> diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml index 94de3994edf..0ba63fae775 100644 --- a/server/sonar-web/pom.xml +++ b/server/sonar-web/pom.xml @@ -173,7 +173,8 @@ <id>js-tests</id> <activation> <property> - <name>!skipTests</name> + <name>skipWebTests</name> + <value>false</value> </property> </activation> <build> diff --git a/server/sonar-ws-client/pom.xml b/server/sonar-ws-client/pom.xml index b31b7c407ff..05b51b7ae1f 100644 --- a/server/sonar-ws-client/pom.xml +++ b/server/sonar-ws-client/pom.xml @@ -172,6 +172,13 @@ </archive> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipServerTests}</skipTests> + </configuration> + </plugin> </plugins> </build> </project> |