aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api-deps
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-05-27 09:47:36 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-05-28 09:29:04 +0200
commitbedce38e52fb67ae66bb9549b69864dd15b45da5 (patch)
treef414ab870161cd18bad7de22b72bb7c580e6a912 /sonar-plugin-api-deps
parent57c01be1943a882a5a2fe0cc0fecab2fe75a861a (diff)
downloadsonarqube-bedce38e52fb67ae66bb9549b69864dd15b45da5.tar.gz
sonarqube-bedce38e52fb67ae66bb9549b69864dd15b45da5.zip
SONAR-6370 rename module sonar-api-deps to sonar-plugin-api-deps
Diffstat (limited to 'sonar-plugin-api-deps')
-rw-r--r--sonar-plugin-api-deps/pom.xml64
1 files changed, 64 insertions, 0 deletions
diff --git a/sonar-plugin-api-deps/pom.xml b/sonar-plugin-api-deps/pom.xml
new file mode 100644
index 00000000000..61ee30d9572
--- /dev/null
+++ b/sonar-plugin-api-deps/pom.xml
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <version>5.2-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>sonar-plugin-api-deps</artifactId>
+ <packaging>jar</packaging>
+
+ <name>SonarQube :: Plugin API Dependencies</name>
+ <description>Deprecated transitive dependencies of sonar-plugin-api</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ <configuration>
+ <minimizeJar>false</minimizeJar>
+ <createDependencyReducedPom>true</createDependencyReducedPom>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>