diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-10-05 21:54:22 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-10-05 21:54:22 +0200 |
commit | b96df0defa1e12f9f679e4c6e8b451bde1a7a566 (patch) | |
tree | 8fcb6c8413b957f3fc0d3ac316842662d6d8aaca /plugins | |
parent | 40ef7ce47f9400d88d351db0bf7e6c8dd7abba68 (diff) | |
download | sonarqube-b96df0defa1e12f9f679e4c6e8b451bde1a7a566.tar.gz sonarqube-b96df0defa1e12f9f679e4c6e8b451bde1a7a566.zip |
SONAR-5381 SONAR-3350 replace mysql MEDIUMTEXT columns by LONGTEXT
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-cpd-plugin/pom.xml | 5 | ||||
-rw-r--r-- | plugins/sonar-dbcleaner-plugin/pom.xml | 5 | ||||
-rw-r--r-- | plugins/sonar-email-notifications-plugin/pom.xml | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/plugins/sonar-cpd-plugin/pom.xml b/plugins/sonar-cpd-plugin/pom.xml index 468405d744f..76492a7406f 100644 --- a/plugins/sonar-cpd-plugin/pom.xml +++ b/plugins/sonar-cpd-plugin/pom.xml @@ -36,6 +36,11 @@ <artifactId>sonar-plugin-api</artifactId> <scope>provided</scope> </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <scope>provided</scope> + </dependency> <!-- unit tests --> <dependency> diff --git a/plugins/sonar-dbcleaner-plugin/pom.xml b/plugins/sonar-dbcleaner-plugin/pom.xml index d4d5b3d5544..ecbdd2379da 100644 --- a/plugins/sonar-dbcleaner-plugin/pom.xml +++ b/plugins/sonar-dbcleaner-plugin/pom.xml @@ -35,6 +35,11 @@ <artifactId>sonar-deprecated</artifactId> <scope>provided</scope> </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <scope>provided</scope> + </dependency> <!-- unit tests --> <dependency> diff --git a/plugins/sonar-email-notifications-plugin/pom.xml b/plugins/sonar-email-notifications-plugin/pom.xml index 8274967827c..f3528229b1f 100644 --- a/plugins/sonar-email-notifications-plugin/pom.xml +++ b/plugins/sonar-email-notifications-plugin/pom.xml @@ -27,6 +27,11 @@ <artifactId>commons-email</artifactId> <version>1.3.2</version> </dependency> + <dependency> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + <scope>provided</scope> + </dependency> <!-- unit tests --> <dependency> |