summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-12-04 10:40:28 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-12-04 10:40:28 +0100
commitb8902c3e6ea48de55e62a1c4a0ecc3279f1980d6 (patch)
tree5e4d3fdc9bf95aaa7cf06aa4386af217b5632232
parent17027adee742f528d1577fab67a8cfec84d9d4fa (diff)
downloadsonarqube-b8902c3e6ea48de55e62a1c4a0ecc3279f1980d6.tar.gz
sonarqube-b8902c3e6ea48de55e62a1c4a0ecc3279f1980d6.zip
Add beanutils to classpath
-rw-r--r--pom.xml6
-rw-r--r--sonar-server/pom.xml4
2 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index a2e8cf82c57..2d383ab5a15 100644
--- a/pom.xml
+++ b/pom.xml
@@ -726,6 +726,12 @@
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
diff --git a/sonar-server/pom.xml b/sonar-server/pom.xml
index ad9268211c3..ad87cbc3e1a 100644
--- a/sonar-server/pom.xml
+++ b/sonar-server/pom.xml
@@ -74,6 +74,10 @@
</exclusions>
</dependency>
<dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ </dependency>
+ <dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
</dependency>