diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-02-19 14:19:56 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-02-19 14:19:56 +0100 |
commit | c4faf8ce19ca4ff4946c7e0d1aa1d9175896f725 (patch) | |
tree | e378ec81efb0813c3e068f2474b4f8e98ab9280e /pom.xml | |
parent | b0511795397b19e4eeb0d82aec92105db4658380 (diff) | |
download | sonarqube-c4faf8ce19ca4ff4946c7e0d1aa1d9175896f725.tar.gz sonarqube-c4faf8ce19ca4ff4946c7e0d1aa1d9175896f725.zip |
Drop unused Surefire config for skipping tests
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 45 |
1 files changed, 0 insertions, 45 deletions
@@ -79,8 +79,6 @@ <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format> <license.title>SonarQube</license.title> - <skipBatchTests>false</skipBatchTests> - <skipServerTests>false</skipServerTests> <skipSanityChecks>false</skipSanityChecks> <argLine>-Xmx512m -Djava.awt.headless=true</argLine> @@ -379,7 +377,6 @@ --> <user.timezone>${testTimezone}</user.timezone> </systemPropertyVariables> - <groups>${junitGroups}</groups> <threadCount>1</threadCount> </configuration> </plugin> @@ -1360,48 +1357,6 @@ </build> </profile> - <!-- - The following profiles optimize the build for each team, according to their - stack layers (scanner, server and web teams) - --> - <profile> - <!-- disable all tests --> - <id>skipTests</id> - <activation> - <property> - <name>skipTests</name> - </property> - </activation> - <properties> - <skipBatchTests>true</skipBatchTests> - <skipServerTests>true</skipServerTests> - </properties> - </profile> - - <profile> - <id>scanner</id> - <properties> - <skipServerTests>true</skipServerTests> - </properties> - </profile> - - <profile> - <id>server</id> - <properties> - <skipBatchTests>true</skipBatchTests> - </properties> - </profile> - - <profile> - <id>web</id> - <properties> - <!-- the web team does not care about java tests --> - <skipBatchTests>true</skipBatchTests> - <skipServerTests>true</skipServerTests> - <skipTests>true</skipTests> - </properties> - </profile> - <profile> <!-- check if maven dependencies have vulnerabilities listed in CVE |