diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-01-09 18:18:29 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-01-09 18:18:37 +0100 |
commit | a3272e9b1d0592df7fe59b0280cffd8714f60041 (patch) | |
tree | 545df092455d3c8fd1554d71bb346f2f841e3c13 /pom.xml | |
parent | c4cb7f52bc27d97e9c9302133ce36aa635816e83 (diff) | |
download | sonarqube-a3272e9b1d0592df7fe59b0280cffd8714f60041.tar.gz sonarqube-a3272e9b1d0592df7fe59b0280cffd8714f60041.zip |
Fix upgrade to Elasticsearch 0.90.9
ASM has been added to ES 0.90.9 but conflicts with PMD analysis. Note that batch and server classpaths are currently (almost) the same but they will be different and sanitized later in 4.2.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -671,6 +671,18 @@ <groupId>org.apache.lucene</groupId> <artifactId>lucene-spatial</artifactId> </exclusion> + <exclusion> + <groupId>org.ow2.asm</groupId> + <artifactId>asm</artifactId> + </exclusion> + <exclusion> + <groupId>org.ow2.asm</groupId> + <artifactId>asm-commons</artifactId> + </exclusion> + <exclusion> + <groupId>org.antlr</groupId> + <artifactId>antlr-runtime</artifactId> + </exclusion> </exclusions> </dependency> <dependency> |