diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-09-15 18:19:55 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-10-09 16:41:29 +0200 |
commit | e2517f4266c4ec005bb21b17a71c94a2dc973148 (patch) | |
tree | 98c8ca2f3d3fa6a24bbe517ceb3dacaca95a531e /sonar-plugin-api/pom.xml | |
parent | 8dbbb595f18b850c610ba17737a14b39a80d82dd (diff) | |
download | sonarqube-e2517f4266c4ec005bb21b17a71c94a2dc973148.tar.gz sonarqube-e2517f4266c4ec005bb21b17a71c94a2dc973148.zip |
Replace groupIds org.codehaus by org.sonarsource
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r-- | sonar-plugin-api/pom.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index bb4634befcb..9d4519922d2 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -4,8 +4,8 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar</artifactId> + <groupId>org.sonarsource.sonarqube</groupId> + <artifactId>sonarqube</artifactId> <version>5.2-SNAPSHOT</version> </parent> @@ -57,11 +57,11 @@ embedded by plugins. --> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sonar-check-api</artifactId> </dependency> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sonar-colorizer</artifactId> <exclusions> <exclusion> @@ -71,7 +71,7 @@ </exclusions> </dependency> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sonar-duplications</artifactId> <exclusions> <exclusion> @@ -163,7 +163,7 @@ <!-- unit tests --> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sonar-testing-harness</artifactId> <scope>test</scope> </dependency> |