forked from skeeto/sample-java-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
35 lines (31 loc) · 808 Bytes
/
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>@groupId@</groupId>
<artifactId>@artifactId@</artifactId>
<version>@version@</version>
<packaging>jar</packaging>
<name>@ant.project.name@</name>
<description>@description@</description>
<url>@project.url@</url>
<licenses>
<license>
<name>The Unlicense</name>
<url>http://unlicense.org/UNLICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>
scm:git:@project.repo.url@
</connection>
<url>@project.scm.url@</url>
</scm>
<developers>
<developer>
<name>Christopher Wellons</name>
<email>[email protected]</email>
<url>http://nullprogram.com</url>
<timezone>-5</timezone>
</developer>
</developers>
</project>