Browse Source

SONAR-6370 rename module sonar-api-deps to sonar-plugin-api-deps

tags/5.2-RC1
Simon Brandhof 9 years ago
parent
commit
bedce38e52
3 changed files with 5 additions and 5 deletions
  1. 1
    1
      pom.xml
  2. 3
    3
      sonar-core/pom.xml
  3. 1
    1
      sonar-plugin-api-deps/pom.xml

+ 1
- 1
pom.xml View File

@@ -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>

+ 3
- 3
sonar-core/pom.xml View File

@@ -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>

sonar-api-deps/pom.xml → sonar-plugin-api-deps/pom.xml View File

@@ -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>

Loading…
Cancel
Save