forked from skeeto/sample-java-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
35 lines (31 loc) · 882 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>IOCProj1_Basic</groupId>
<artifactId>IOCProj1_Basic</artifactId>
<version>10</version>
<packaging>jar</packaging>
<name>Test.Project</name>
<description>This is a test java project</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:https://github.com/ashwinathale/sample-java-project
</connection>
<url>https://github.com/ashwinathale/sample-java-project/</url>
</scm>
<developers>
<developer>
<name>Christopher Wellons</name>
<email>[email protected]</email>
<url>http://nullprogram.com</url>
<timezone>-5</timezone>
</developer>
</developers>
</project>