diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-04 11:23:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-04 11:23:03 +0200 |
commit | ffa67599a95c7cf1cb9540eef10eba4252ef2b4e (patch) | |
tree | 69c7d506787de392146897cbf37a8df09508eed9 /sonar-server/pom.xml | |
parent | 0be190ef3ae0ad32c9324c6021704ab2dcc35978 (diff) | |
download | sonarqube-ffa67599a95c7cf1cb9540eef10eba4252ef2b4e.tar.gz sonarqube-ffa67599a95c7cf1cb9540eef10eba4252ef2b4e.zip |
Revert "SONAR-5117 fix compatibility of build with maven 3.0.x"
This reverts commit 514b752d87d4918cee373d8dd9c6ad1a3bfd183b.
Diffstat (limited to 'sonar-server/pom.xml')
-rw-r--r-- | sonar-server/pom.xml | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml index 9563421b4e1..b5a47bdeb16 100644 --- a/sonar-server/pom.xml +++ b/sonar-server/pom.xml @@ -175,35 +175,8 @@ <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> - <!-- - bug of maven 3.0.x (maybe 3.1). Fixed in 3.2 - Scope of transitive dependencies of sonar-core:test-jar is "compile" - but should be "test" - --> - <exclusions> - <exclusion> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - </exclusion> - <exclusion> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> - <scope>test</scope> - </dependency> - - - <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> @@ -384,9 +357,7 @@ <profile> <id>js-tests</id> <activation> - <property> - <name>!skipTests</name> - </property> + <property><name>!skipTests</name></property> </activation> <build> <plugins> |