diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-05-27 09:47:36 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-05-28 09:29:04 +0200 |
commit | bedce38e52fb67ae66bb9549b69864dd15b45da5 (patch) | |
tree | f414ab870161cd18bad7de22b72bb7c580e6a912 | |
parent | 57c01be1943a882a5a2fe0cc0fecab2fe75a861a (diff) | |
download | sonarqube-bedce38e52fb67ae66bb9549b69864dd15b45da5.tar.gz sonarqube-bedce38e52fb67ae66bb9549b69864dd15b45da5.zip |
SONAR-6370 rename module sonar-api-deps to sonar-plugin-api-deps
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | sonar-core/pom.xml | 6 | ||||
-rw-r--r-- | sonar-plugin-api-deps/pom.xml (renamed from sonar-api-deps/pom.xml) | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -11,7 +11,7 @@ <description>Open source platform for continuous inspection of code quality</description> <modules> - <module>sonar-api-deps</module> + <module>sonar-plugin-api-deps</module> <module>sonar-application</module> <module>sonar-batch</module> <module>sonar-batch-maven-compat</module> diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index 91eb277c578..39383aa7962 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -116,7 +116,7 @@ <dependency> <!-- sonar-api-deps.jar is copied into target JAR file --> <groupId>org.codehaus.sonar</groupId> - <artifactId>sonar-api-deps</artifactId> + <artifactId>sonar-plugin-api-deps</artifactId> <version>${project.version}</version> <scope>runtime</scope> </dependency> @@ -207,8 +207,8 @@ <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> - <artifactId>sonar-api-deps</artifactId> - <destFileName>sonar-api-deps.jar</destFileName> + <artifactId>sonar-plugin-api-deps</artifactId> + <destFileName>sonar-plugin-api-deps.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.outputDirectory}</outputDirectory> diff --git a/sonar-api-deps/pom.xml b/sonar-plugin-api-deps/pom.xml index 5c2290160a6..61ee30d9572 100644 --- a/sonar-api-deps/pom.xml +++ b/sonar-plugin-api-deps/pom.xml @@ -8,7 +8,7 @@ <version>5.2-SNAPSHOT</version> </parent> - <artifactId>sonar-api-deps</artifactId> + <artifactId>sonar-plugin-api-deps</artifactId> <packaging>jar</packaging> <name>SonarQube :: Plugin API Dependencies</name> |