forked from marc4j/marc4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom_template.xml
108 lines (101 loc) · 3.22 KB
/
pom_template.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
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="UTF-8"?>
<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>
<artifactId>marc4j</artifactId>
<packaging>jar</packaging>
<version>@VERSION@</version>
<name>MARC4J</name>
<description>An easy to use Application Programming Interface (API) for working with MARC and MARCXML in Java.</description>
<url>https://github.com/marc4j/marc4j</url>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
<comments>Licensed under the GNU LGPL 2.1 or later (at your option)</comments>
</license>
</licenses>
<scm>
<connection>scm:git:[email protected]:marc4j/marc4j.git</connection>
<developerConnection>scm:git:[email protected]:marc4j/marc4j.git</developerConnection>
<url>[email protected]:marc4j/marc4j.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/marc4j/marc4j/issues</url>
</issueManagement>
<developers>
<developer>
<email>[email protected]</email>
<name>Robert Haschart</name>
<url>https://github.com/haschart</url>
<roles>
<role>Developer</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
<developer>
<email>[email protected]</email>
<name>Bas Peters</name>
<roles>
<role>Project Creator</role>
</roles>
<timezone>Europe/Amsterdam</timezone>
</developer>
<developer>
<email>[email protected]</email>
<name>Simon Spero</name>
<url>http://www.ibiblio.org/fred2.0</url>
<roles>
<role>Contributor</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
<developer>
<email>[email protected]</email>
<name>Kevin S. Clarke</name>
<url>http://kevinclarke.info</url>
<roles>
<role>Contributor</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
<developer>
<email>[email protected]</email>
<name>Jonathan Rochkind</name>
<url>http://bibwild.wordpress.com/</url>
<roles>
<role>Contributor</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
<developer>
<email>[email protected]</email>
<name>Bill Dueber</name>
<url>http://robotlibrarian.billdueber.com/</url>
<roles>
<role>Contributor</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
<developer>
<email>[email protected]</email>
<name>Joe Atzberger</name>
<url>https://github.com/atz</url>
<roles>
<role>Contributor</role>
</roles>
<timezone>America/New_York</timezone>
</developer>
</developers>
<groupId>org.marc4j</groupId>
<dependencies>
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>