diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2015-06-30 09:59:53 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2015-06-30 10:00:58 +0200 |
commit | 5b63bfea88114285b46b884a25eee517b96d2b70 (patch) | |
tree | 22494cfa01ecc185b94b2ea3737567952d822ffa /server/sonar-web/pom.xml | |
parent | 6fe3a6534f986875ccfbb1b59a8b6025dc308d64 (diff) | |
download | sonarqube-5b63bfea88114285b46b884a25eee517b96d2b70.tar.gz sonarqube-5b63bfea88114285b46b884a25eee517b96d2b70.zip |
Fix build with empty local Maven repository
Diffstat (limited to 'server/sonar-web/pom.xml')
-rw-r--r-- | server/sonar-web/pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/server/sonar-web/pom.xml b/server/sonar-web/pom.xml index c4b4e3657bd..a4628031fb0 100644 --- a/server/sonar-web/pom.xml +++ b/server/sonar-web/pom.xml @@ -16,6 +16,14 @@ <sonar.sources>src/main/js,src/main/coffee,src/main/hbs,src/main/less</sonar.sources> <sonar.exclusions>src/main/js/third-party/**/*,src/main/js/require.js,src/main/js/tests/**/*</sonar.exclusions> </properties> + + <dependencies> + <dependency> + <groupId>org.codehaus.sonar</groupId> + <artifactId>sonar-colorizer</artifactId> + <scope>provided</scope> + </dependency> + </dependencies> <build> <resources> |