source: trunk/abcl/pom.xml

Last change on this file was 15722, checked in by Mark Evenson, 10 months ago

1.9.3: update build metadata to 1.9.3-dev

File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project
3   xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
4   xmlns="https://maven.apache.org/POM/4.0.0"
5   xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
6
7  <modelVersion>4.0.0</modelVersion>
8  <parent>
9    <groupId>org.sonatype.oss</groupId>
10    <artifactId>oss-parent</artifactId>
11    <version>6</version>
12  </parent>
13  <groupId>org.abcl</groupId>
14  <artifactId>abcl</artifactId>
15  <version>1.9.3-SNAPSHOT</version>
16  <packaging>jar</packaging>
17  <name>ABCL - Armed Bear Common Lisp</name>
18  <description>Common Lisp implementation running on the JVM</description>
19  <url>https://abcl.org</url>
20  <licenses>
21    <license>
22      <name>GNU General Public License with Classpath exception</name>
23      <url>https://www.gnu.org/software/classpath/license.html</url>
24      <distribution>repo</distribution>
25    </license>
26  </licenses>
27  <scm>
28    <connection>scm:svn:https://abcl.org/svn/trunk/</connection>
29    <developerConnection>scm:git:https://gitlab.common-lisp.net/abcl/abcl</developerConnection>
30    <url>https://gitlab.common-lisp.net/abcl/abcl</url>
31  </scm>
32  <developers>
33    <developer>
34      <id>ehu</id>
35      <name>Erik Huelsmann</name>
36      <email>ehuels (at) gmail (dot) com</email>
37    </developer>
38    <developer>
39      <id>easyE</id>
40      <name>Mark Evenson</name>
41      <email>evenson (at) panix (dot) com</email>
42    </developer>
43    <developer>
44      <id>V-ille</id>
45      <name>Ville Voutilainen</name>
46      <email>ville.voutilainen (at) gmail (dot) com</email>
47    </developer>
48    <developer>
49      <id>astalla</id>
50      <name>Alessio Stalla</name>
51      <email>alessiostalla (at) gmail (dot) com</email>
52    </developer>
53    <developer>
54      <id>rudi</id>
55      <name>Rudi Schlatte</name>
56      <email>rudi (at) constantly (dot) at</email>
57    </developer>
58  </developers>
59  <dependencies/>
60  <build>
61    <directory>${project.basedir}/build</directory>
62    <sourceDirectory>${project.basedir}/src</sourceDirectory>
63    <plugins>
64      <plugin>
65  <artifactId>maven-antrun-plugin</artifactId>
66  <version>3.1.0</version>
67  <dependencies> 
68  </dependencies>
69  <executions>
70    <execution>
71      <id>clean</id>
72      <phase>clean</phase>
73      <configuration>
74        <target>
75    <ant antfile="build.xml" target="abcl.clean"/>
76        </target>
77      </configuration>
78      <goals>
79        <goal>run</goal>
80      </goals>     
81    </execution>
82    <execution>
83      <id>compile</id>
84      <phase>compile</phase>
85      <configuration>
86        <target>
87    <ant antfile="build.xml" target="abcl.compile"/>
88        </target>
89      </configuration>
90      <goals>
91        <goal>run</goal>
92      </goals>     
93    </execution>
94    <execution>
95      <id>package</id>
96      <phase>package</phase>
97      <configuration>
98        <target>
99    <ant antfile="build.xml" target="abcl.wrapper"/>
100                <ant antfile="build.xml" target="abcl.contrib"/>
101        </target>
102      </configuration>
103      <goals>
104        <goal>run</goal>
105      </goals>     
106    </execution>
107          <execution>
108      <id>test</id>
109      <phase>test</phase>
110      <configuration>
111        <target>
112                <ant antfile="build.xml" target="test.abcl"/>
113
114                <!-- test.ansi.compiled requires
115                     <git+https://gitlab.common-lisp.net/ansi-test/ansi-test/>
116                     to be cloned locally as <file:../ansi-test/>
117                -->
118                <ant antfile="build.xml" target="test.ansi.compiled"/>
119
120                <!-- test.cl-bench requires
121                     <git+https://gitlab.common-lisp.net/ansi-test/cl-bench/>
122                     to be cloned locally as <file:../cl-bench/>
123                -->
124                <ant antfile="build.xml" target="test.cl-bench"/>
125        </target>
126      </configuration>
127      <goals>
128        <goal>run</goal>
129      </goals>     
130    </execution>
131  </executions>
132      </plugin>
133    </plugins>
134  </build>
135</project>
Note: See TracBrowser for help on using the repository browser.