diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-batch-maven-plugin/pom.xml | 9 | ||||
-rw-r--r-- | plugins/sonar-xoo-plugin/pom.xml | 12 |
2 files changed, 9 insertions, 12 deletions
diff --git a/plugins/sonar-batch-maven-plugin/pom.xml b/plugins/sonar-batch-maven-plugin/pom.xml index 1905981221a..6aa5bc1d1d3 100644 --- a/plugins/sonar-batch-maven-plugin/pom.xml +++ b/plugins/sonar-batch-maven-plugin/pom.xml @@ -4,13 +4,12 @@ <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> <relativePath>../..</relativePath> </parent> - <groupId>org.codehaus.sonar.plugins</groupId> <artifactId>sonar-batch-maven-plugin</artifactId> <name>SonarQube :: Batch Maven Plugin</name> <packaging>sonar-plugin</packaging> @@ -23,7 +22,7 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>${project.groupId}</groupId> <artifactId>sonar-plugin-api</artifactId> <scope>provided</scope> </dependency> @@ -38,7 +37,7 @@ <build> <plugins> <plugin> - <groupId>org.codehaus.sonar</groupId> + <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <configuration> <pluginKey>mavenbatch</pluginKey> diff --git a/plugins/sonar-xoo-plugin/pom.xml b/plugins/sonar-xoo-plugin/pom.xml index 1e43aaa48c2..29310fb8f1a 100644 --- a/plugins/sonar-xoo-plugin/pom.xml +++ b/plugins/sonar-xoo-plugin/pom.xml @@ -2,12 +2,11 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <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> <relativePath>../..</relativePath> </parent> - <groupId>org.codehaus.sonar.plugins</groupId> <artifactId>sonar-xoo-plugin</artifactId> <name>SonarQube :: Plugins :: Xoo</name> <packaging>sonar-plugin</packaging> @@ -36,15 +35,14 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api</artifactId> - <version>${project.version}</version> <scope>provided</scope> </dependency> <!-- unit testing --> <dependency> - <groupId>org.codehaus.sonar</groupId> + <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-testing-harness</artifactId> <scope>test</scope> </dependency> @@ -53,7 +51,7 @@ <build> <plugins> <plugin> - <groupId>org.codehaus.sonar</groupId> + <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <configuration> <pluginKey>xoo</pluginKey> |