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 /sonar-api-deps/pom.xml | |
parent | 57c01be1943a882a5a2fe0cc0fecab2fe75a861a (diff) | |
download | sonarqube-bedce38e52fb67ae66bb9549b69864dd15b45da5.tar.gz sonarqube-bedce38e52fb67ae66bb9549b69864dd15b45da5.zip |
SONAR-6370 rename module sonar-api-deps to sonar-plugin-api-deps
Diffstat (limited to 'sonar-api-deps/pom.xml')
-rw-r--r-- | sonar-api-deps/pom.xml | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/sonar-api-deps/pom.xml b/sonar-api-deps/pom.xml deleted file mode 100644 index 5c2290160a6..00000000000 --- a/sonar-api-deps/pom.xml +++ /dev/null @@ -1,64 +0,0 @@ -<?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-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> |