diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-12-03 23:22:12 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-12-03 23:22:12 +0100 |
commit | 9ed75593da1c5a4fa06aef054b6e6f61081456de (patch) | |
tree | cbca32d888cdc1d6a170d0e2251d33c584d2badd /pom.xml | |
parent | 1e812fa858fa398020317f1aebd3d467dadf6d65 (diff) | |
download | sonarqube-9ed75593da1c5a4fa06aef054b6e6f61081456de.tar.gz sonarqube-9ed75593da1c5a4fa06aef054b6e6f61081456de.zip |
Sanitize declaration of dependencies
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 54 |
1 files changed, 46 insertions, 8 deletions
@@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.sonar</groupId> @@ -96,7 +97,7 @@ <skipSanityChecks>false</skipSanityChecks> <!-- default GWT configuration. It's overridden by the profile 'dev' to speed up compilation in dev environments--> - <gwt.permutationSuffix /> + <gwt.permutationSuffix/> <gwt.extraJvmArgs>-Xmx512m -Xss1024k</gwt.extraJvmArgs> <sonar.snapshotRepository.url>dav:https://dav.codehaus.org/snapshots.repository/sonar</sonar.snapshotRepository.url> </properties> @@ -362,7 +363,8 @@ <searchTransitive>true</searchTransitive> </bannedDependencies> <requireNoRepositories> - <message>Definition of new repositories is not allowed in order to deploy to central repository.</message> + <message>Definition of new repositories is not allowed in order to deploy to central repository. + </message> </requireNoRepositories> </rules> </configuration> @@ -662,6 +664,22 @@ <version>3.2.1</version> </dependency> <dependency> + <groupId>org.elasticsearch</groupId> + <artifactId>elasticsearch</artifactId> + <version>${elasticsearch.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.lucene</groupId> + <artifactId>lucene-spatial</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>com.github.tlrx</groupId> + <artifactId>elasticsearch-test</artifactId> + <version>${elasticsearch.version}</version> + </dependency> + <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>10.0.1</version> @@ -723,6 +741,10 @@ <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils-core</artifactId> </exclusion> + <exclusion> + <groupId>commons-digester</groupId> + <artifactId>commons-digester</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -960,6 +982,22 @@ <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> + <exclusion> + <groupId>backport-util-concurrent</groupId> + <artifactId>backport-util-concurrent</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-interpolation</artifactId> + </exclusion> + <exclusion> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-container-default</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.maven</groupId> + <artifactId>maven-artifact-manager</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -1237,7 +1275,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1250,7 +1288,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1263,7 +1301,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1277,7 +1315,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> <pluginExecution> @@ -1290,7 +1328,7 @@ </goals> </pluginExecutionFilter> <action> - <ignore /> + <ignore/> </action> </pluginExecution> </pluginExecutions> |