-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
109 lines (100 loc) · 3.55 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?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>de.schmizzolin.maven.poms</groupId>
<artifactId>parent</artifactId>
<version>1.6.5</version>
<relativePath />
</parent>
<name>Maven Application Plugin</name>
<url>https://github.com/mlhartme/maven-application-plugin</url>
<description>Packages your Java application into a single executable file.</description>
<licenses>
<license>
<name>Gnu General Public License, Version 3.0</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<groupId>net.oneandone.maven.plugins</groupId>
<artifactId>application</artifactId>
<version>1.8.3-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<scm>
<connection>scm:git:ssh://[email protected]/mlhartme/maven-application-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/mlhartme/maven-application-plugin.git</developerConnection>
<url>scm:git:ssh://[email protected]/mlhartme/maven-application-plugin</url>
<tag>HEAD</tag>
</scm>
<properties>
<maven-license-plugin.header>${basedir}/src/license.header</maven-license-plugin.header>
<maven.version>3.9.7</maven.version>
</properties>
<dependencies>
<dependency>
<groupId>net.oneandone</groupId>
<artifactId>sushi</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.13.1</version>
<!-- annotations are not needed for plugin execution so we can remove this dependency
for execution with using provided scope -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-base</artifactId>
<version>6.2.2</version><!-- TODO: library looks dead, no updates for several years ... -->
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.13.1</version>
<configuration>
<goalPrefix>application</goalPrefix>
</configuration>
<executions>
<execution>
<id>help-goal</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>