source: branches/0.26.x/abcl/pom.xml

Last change on this file was 13259, checked in by astalla, 13 years ago

Java method resolution algorithm used by JCALL extracted to a method and exposed as the Lisp function JAVA:JRESOLVE-METHOD

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5
6  <!-- NOT USABLE FOR BUILDS, only for installing into a repository! -->
7
8  <modelVersion>4.0.0</modelVersion>
9  <parent>
10    <groupId>org.sonatype.oss</groupId>
11    <artifactId>oss-parent</artifactId>
12    <version>6</version>
13  </parent>
14  <groupId>org.armedbear.lisp</groupId>
15  <artifactId>abcl</artifactId>
16  <version>0.26.0-SNAPSHOT</version>
17  <packaging>jar</packaging>
18  <name>ABCL - Armed Bear Common Lisp</name>
19  <description>Common Lisp implementation running on the JVM</description>
20  <url>http://common-lisp/project/armedbear</url>
21  <licenses>
22    <license>
23      <name>GNU General Public License with Classpath exception</name>
24      <url>http://www.gnu.org/software/classpath/license.html</url>
25      <distribution>repo</distribution>
26    </license>
27  </licenses>
28  <scm>
29    <connection>scm:svn:svn://common-lisp.net/project/armedbear/svn/trunk/</connection>
30    <developerConnection>scm:svn:svn+ssh://common-lisp.net/project/armedbear/svn/trunk/</developerConnection>
31    <url>http://common-lisp.net/websvn/listing.php?repname=armedbear</url>
32  </scm>
33  <developers>
34    <developer>
35      <id>ehu</id>
36      <name>Erik Huelsmann</name>
37      <email>ehuels (at) gmail (dot) com</email>
38    </developer>
39    <developer>
40      <id>easyE</id>
41      <name>Mark Evenson</name>
42      <email>evenson (at) panix (dot) com</email>
43    </developer>
44    <developer>
45      <id>V-ille</id>
46      <name>Ville Voutilainen</name>
47      <email>ville.voutilainen (at) gmail (dot) com</email>
48    </developer>
49    <developer>
50      <id>astalla</id>
51      <name>Alessio Stalla</name>
52      <email>alessiostalla (at) gmail (dot) com</email>
53    </developer>
54  </developers>
55
56
57  <dependencies />
58</project>
Note: See TracBrowser for help on using the repository browser.