Files
abcl/abcl-1.9.2.pom
Anton Shvetz b40adf836a - Update to v1.9.2
* Changes
    + [r15712] JNA contrib has been updated to jna-5.13.0
    + [r15711] (Alan Ruttenberg) Restore most of the speed of the
      generic function cache that was degraded with abcl-1.9.1
    + [r15709] (Alejandrozf) The ABCL-STEPPER contrib provides a
      interpreted implementation of CL:STEP.
    + [r15692][r15701]-[r15707] Substantially re-worked the Gray
      Stream implementation to fix many of its outstanding issues.
    + [r15700] Introduced the POSIX-SYSCALLS contrib which allows
      one to set environment variables in the hosting JVM process.
    + [r15698] (Uthar) Fix GRAY-STREAMS:STREAM-ELEMENT-TYPE for
      binary streams.
    + [r15689] (jpellegrini) Fix CL:LOG for behavior at zero.
    + [r15686] Extensive grouting of accumulated bitrot in the
      ASDF-JAR contrib to enable more complete packaging of
      non-compilation artifacts as well as systems residing in jar
      files.
    + [r15683] EXTENSION:REGISTER-ASDF adds a directory to ASDF by
      using the configuration API.
    + [r15682] SYSTEM:ZIP now works with source in jar files.
    + [r15674] (Uthar) Augment JAVA:JNEW-RUNTIME-CLASS docstring.
    + [r15673] The outdated GNU Info version of User Manual has
      been removed.  The GNU Info conversion was done by hand, and
      is neither easily reproducible nor particually accurate at
      this point.
    + [r15672] Fix build under podman by qualify remote registry
      for containerization base.

OBS-URL: https://build.opensuse.org/package/show/Java:packages/abcl?expand=0&rev=13
2023-07-13 11:25:39 +00:00

136 lines
3.9 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="https://maven.apache.org/POM/4.0.0"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
<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.9.2</version>
<packaging>jar</packaging>
<name>ABCL - Armed Bear Common Lisp</name>
<description>Common Lisp implementation running on the JVM</description>
<url>https://abcl.org</url>
<licenses>
<license>
<name>GNU General Public License with Classpath exception</name>
<url>https://www.gnu.org/software/classpath/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:https://abcl.org/svn/trunk/</connection>
<developerConnection>scm:git:https://gitlab.common-lisp.net/abcl/abcl</developerConnection>
<url>https://gitlab.common-lisp.net/abcl/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/>
<build>
<directory>${project.basedir}/build</directory>
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<dependencies>
</dependencies>
<executions>
<execution>
<id>clean</id>
<phase>clean</phase>
<configuration>
<target>
<ant antfile="build.xml" target="abcl.clean"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<ant antfile="build.xml" target="abcl.compile"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>package</id>
<phase>package</phase>
<configuration>
<target>
<ant antfile="build.xml" target="abcl.wrapper"/>
<ant antfile="build.xml" target="abcl.contrib"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test</phase>
<configuration>
<target>
<ant antfile="build.xml" target="test.abcl"/>
<!-- test.ansi.compiled requires
<git+https://gitlab.common-lisp.net/ansi-test/ansi-test/>
to be cloned locally as <file:../ansi-test/>
-->
<ant antfile="build.xml" target="test.ansi.compiled"/>
<!-- test.cl-bench requires
<git+https://gitlab.common-lisp.net/ansi-test/cl-bench/>
to be cloned locally as <file:../cl-bench/>
-->
<ant antfile="build.xml" target="test.cl-bench"/>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>