-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
61 lines (59 loc) · 1.96 KB
/
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
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
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- NOT USABLE FOR BUILDS, only for installing into a repository! -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>6</version>
</parent>
<groupId>org.abcl</groupId>
<artifactId>abcl</artifactId>
<version>1.6.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>ABCL - Armed Bear Common Lisp</name>
<description>Common Lisp implementation running on the JVM</description>
<url>http://abcl.org</url>
<licenses>
<license>
<name>GNU General Public License with Classpath exception</name>
<url>http://www.gnu.org/software/classpath/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://abcl.org/svn/trunk/</connection>
<developerConnection>scm:svn:svn+ssh://abcl.org/project/armedbear/svn/trunk/</developerConnection>
<url>http://abcl.org/trac/browser/trunk/abcl</url>
</scm>
<developers>
<developer>
<id>ehu</id>
<name>Erik Huelsmann</name>
<email>ehuels (at) gmail (dot) com</email>
</developer>
<developer>
<id>easyE</id>
<name>Mark Evenson</name>
<email>evenson (at) panix (dot) com</email>
</developer>
<developer>
<id>V-ille</id>
<name>Ville Voutilainen</name>
<email>ville.voutilainen (at) gmail (dot) com</email>
</developer>
<developer>
<id>astalla</id>
<name>Alessio Stalla</name>
<email>alessiostalla (at) gmail (dot) com</email>
</developer>
<developer>
<id>rudi</id>
<name>Rudi Schlatte</name>
<email>rudi (at) constantly (dot) at</email>
</developer>
</developers>
<dependencies />
</project>