forked from spilth/java9-minimal-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
98 lines (90 loc) · 3.8 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
<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>
<groupId>org.grumpyf0x48</groupId>
<artifactId>java-maven-quickstart</artifactId>
<version>0.1-SNAPSHOT</version>
<name>java-maven-quickstart</name>
<description>A Maven Archetype for creating a minimal Java project taken from https://github.com/spilth/java9-minimal-quickstart
</description>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/grumpyf0x48/java-maven-quickstart</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
<maven-enforcer-maven.version>3.8.7</maven-enforcer-maven.version>
<versions-maven-plugin.version>2.17.0</versions-maven-plugin.version>
</properties>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Brian Kelly</name>
<email>[email protected]</email>
<organization>spilth.org</organization>
<organizationUrl>http://spilth.org/</organizationUrl>
</developer>
<developer>
<name>Pierre-Yves Fourmond</name>
<email>[email protected]</email>
<organizationUrl>https://grumpyf0x48.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:grumpyf0x48/java-maven-quickstart.git</connection>
<developerConnection>scm:git:[email protected]:grumpyf0x48/java-maven-quickstart.git</developerConnection>
<url>https://github.com/grumpyf0x48/java-maven-quickstart</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[${maven-enforcer-maven.version},)</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${versions-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
</project>