-
Notifications
You must be signed in to change notification settings - Fork 61
/
pom.xml.template
68 lines (65 loc) · 2.38 KB
/
pom.xml.template
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
<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>@groupId@</groupId>
<artifactId>@artifactId@</artifactId>
<version>@version@</version>
<packaging>jar</packaging>
<name>@artifactName@</name>
<description>EclipseLink build based upon Git transaction @git.hash@</description>
<url>http://www.eclipse.org/eclipselink</url>
<organization>
<name>Eclipse.org - EclipseLink Project</name>
<url>http://www.eclipse.org/eclipselink</url>
</organization>
<issueManagement>
<system>bugzilla</system>
<url>https://bugs.eclipse.org/bugs</url>
</issueManagement>
<inceptionYear>2007</inceptionYear>
<mailingLists>
<mailingList>
<name>EclipseLink Developer List</name>
<post>[email protected]</post>
<archive>http://dev.eclipse.org/mhonarc/lists/eclipselink-dev</archive>
</mailingList>
<mailingList>
<name>EclipseLink User List</name>
<post>[email protected]</post>
<archive>http://dev.eclipse.org/mhonarc/lists/eclipselink-users</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>Eclipse Public License v1.0</name>
<url>http://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
<comments>Standard Eclipse Licence</comments>
</license>
<license>
<name>Eclipse Distribution License v. 1.0</name>
<url>http://www.eclipse.org/org/documents/edl-v10.php</url>
<distribution>repo</distribution>
<comments>Standard Eclipse Distribution License</comments>
</license>
</licenses>
<scm>
<connection>scm:git:http://git.eclipse.org/eclipselink/eclipselink.runtime.git</connection>
<url>http://git.eclipse.org/eclipselink/eclipselink.runtime.git</url>
</scm>
<developers>
<developer>
<id>PeterKrogh</id>
<name>Peter Krogh</name>
<email>[email protected]</email>
<organization>Eclipse.org - EclipseLink Project</organization>
<organizationUrl>http://www.eclipse.org/eclipselink</organizationUrl>
<roles>
<role>Project Manager</role>
<role>Developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
@dependencies@
</project>