summaryrefslogtreecommitdiff
path: root/build/maven/gradle/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build/maven/gradle/pom.xml')
-rw-r--r--build/maven/gradle/pom.xml91
1 files changed, 0 insertions, 91 deletions
diff --git a/build/maven/gradle/pom.xml b/build/maven/gradle/pom.xml
deleted file mode 100644
index c43e2b6..0000000
--- a/build/maven/gradle/pom.xml
+++ /dev/null
@@ -1,91 +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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>net.sf.proguard</groupId>
- <artifactId>proguard-parent</artifactId>
- <version>5.1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>proguard-gradle</artifactId>
- <name>[${project.groupId}] ${project.artifactId}</name>
-
- <build>
- <sourceDirectory>../../../src</sourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <configuration>
- <includes>
- <include>proguard/gradle/**</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <includes>
- <include>proguard/gradle/**</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <addClasspath>true</addClasspath>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <subpackages>proguard.gradle</subpackages>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>proguard-base</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.gradle</groupId>
- <artifactId>gradle-core</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.gradle</groupId>
- <artifactId>gradle-base-services</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.gradle</groupId>
- <artifactId>gradle-base-services-groovy</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- <version>2.3.6</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>gradle</id>
- <url>http://repo.gradle.org/gradle/libs-releases-local/</url>
- </repository>
- </repositories>
-</project>