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 /sonar-batch-protocol | |
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 'sonar-batch-protocol')
-rw-r--r-- | sonar-batch-protocol/pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sonar-batch-protocol/pom.xml b/sonar-batch-protocol/pom.xml index 5337b6c424b..17d373e2956 100644 --- a/sonar-batch-protocol/pom.xml +++ b/sonar-batch-protocol/pom.xml @@ -38,4 +38,16 @@ <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <skipTests>${skipBatchTests}</skipTests> + </configuration> + </plugin> + </plugins> + </build> </project> |