forked from wvengen/proguard-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
76 lines (61 loc) · 2.4 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="ISO-8859-1"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0">
<!-- @version $Revision$ ($Author$) $Date$ -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.pyx4me</groupId>
<artifactId>pyx4me-maven-plugins</artifactId>
<version>2.0.4</version><!--pyx4me-version in official repo-->
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<name>proguard-maven-plugin</name>
<version>2.0.5</version>
<packaging>maven-plugin</packaging>
<description>Maven 2 Plugin for ProGuard</description>
<url>http://github.com/wvengen/proguard-maven-plugin</url>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL)</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<scm>
<url>http://github.com/wvengen/proguard-maven-plugin</url>
<connection>scm:git:git://github.com/wvengen/proguard-maven-plugin.git</connection>
</scm>
<dependencies>
<dependency>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-base</artifactId>
<version>4.5</version>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>2.4</version>
<exclusions>
<!--
To remove this warning
[WARNING] Artifact junit:junit:jar:3.8.1:test retains local scope 'test' overriding broader scope 'compile'
given by a dependency. If this is not intended, modify or remove the local scope.
-->
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>