-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml.template
82 lines (74 loc) · 2.81 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!--
Copyright (c) 2007, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0,
or the Eclipse Distribution License v. 1.0 which is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
-->
<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 v. 2.0</name>
<url>http://www.eclipse.org/legal/epl-v20.html</url>
<distribution>repo</distribution>
<comments>Standard Eclipse License</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:https://github.com/eclipse-ee4j/eclipselink.git</connection>
<url>https://github.com/eclipse-ee4j/eclipselink.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>