diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2020-03-03 15:15:40 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-03-21 20:04:01 +0000 |
commit | 3351fb7e24c0c1e420cc7524029a735198f30ccf (patch) | |
tree | 59f3f2c8334b64bc73ad3f997c06399d1dff0555 /server/sonar-db-migration/build.gradle | |
parent | 1324596989bf50752ef6bb44c3127fc2b8d9fae5 (diff) | |
download | sonarqube-3351fb7e24c0c1e420cc7524029a735198f30ccf.tar.gz sonarqube-3351fb7e24c0c1e420cc7524029a735198f30ccf.zip |
SONAR-13155 Drop usage of commons-dbutils
except for unit tests
Diffstat (limited to 'server/sonar-db-migration/build.gradle')
-rw-r--r-- | server/sonar-db-migration/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-db-migration/build.gradle b/server/sonar-db-migration/build.gradle index 4dd9a0d0b58..b6d51d37714 100644 --- a/server/sonar-db-migration/build.gradle +++ b/server/sonar-db-migration/build.gradle @@ -11,7 +11,6 @@ dependencies { compile 'commons-lang:commons-lang' compile 'commons-codec:commons-codec' compile 'org.picocontainer:picocontainer' - compile 'commons-dbutils:commons-dbutils' compile project(':server:sonar-db-core') compile project(':server:sonar-process') @@ -21,6 +20,7 @@ dependencies { testCompile 'com.google.code.findbugs:jsr305' testCompile 'com.tngtech.java:junit-dataprovider' + testCompile 'commons-dbutils:commons-dbutils' testCompile 'junit:junit' testCompile 'org.assertj:assertj-core' testCompile 'org.mindrot:jbcrypt' |