- Update to v2.2.2 * Changed + Publish release artifacts to Central Portal using OSSRH Staging API service. + Bump Checkstyle to 10.25.0. - Update to v2.2.1 * Changed + IntHashSet#retainAll(Collection) and IntHashSet#retainAll(IntHashSet) no longer change the capacity of the set. + Bump JUnit to 5.13.0. * Fixed + Infinite loop in IntHashSet when retainAll leaves collections with a power of two number of elements. - Update to v2.2.0 * Changed + Protect against numeric overflow when recording errors at the end of the large buffer. + CI: Use gradle/actions/setup-gradle action for caching Gradle dependencies. + CI: Enable JDK 24 GA build. + Bump Gradle to 8.14.1. + Bump Checkstyle to 10.24.0. + Bump ByteBuddy to 1.17.5. + Bump Shadow to 8.3.6. + Bump JUnit to 5.12.2. + Bump Mockito to 5.18.0. + Bump Guava TestLib to 33.4.8-jre. * Added + Add SystemUtil#isMac method. + Add tests for file mapping. OBS-URL: https://build.opensuse.org/request/show/1287024 OBS-URL: https://build.opensuse.org/package/show/Java:packages/agrona?expand=0&rev=9
61 lines
2.0 KiB
XML
61 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.agrona</groupId>
|
|
<artifactId>agrona-agent</artifactId>
|
|
<version>2.2.2</version>
|
|
<name>agrona</name>
|
|
<description>High performance primitives and utility library.</description>
|
|
<url>https://github.com/aeron-io/agrona</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>tmontgomery</id>
|
|
<name>Todd L. Montgomery</name>
|
|
<email>tmont@nard.net</email>
|
|
<url>https://github.com/tmontgomery</url>
|
|
</developer>
|
|
<developer>
|
|
<id>mjpt777</id>
|
|
<name>Martin Thompson</name>
|
|
<email>mjpt777@gmail.com</email>
|
|
<url>https://github.com/mjpt777</url>
|
|
</developer>
|
|
<developer>
|
|
<id>RichardWarburton</id>
|
|
<name>Richard Warburton</name>
|
|
<email>richard.warburton@gmail.com</email>
|
|
<url>https://github.com/RichardWarburton</url>
|
|
</developer>
|
|
<developer>
|
|
<id>nitsanw</id>
|
|
<name>Nitsan Wakart</name>
|
|
<email>nitsanw@yahoo.com</email>
|
|
<url>https://github.com/nitsanw</url>
|
|
</developer>
|
|
<developer>
|
|
<id>mikeb01</id>
|
|
<name>Mike Barker</name>
|
|
<email>mikeb01@gmail.com</email>
|
|
<url>https://github.com/mikeb01</url>
|
|
</developer>
|
|
<developer>
|
|
<id>vyazelenko</id>
|
|
<name>Dmytro Vyazelenko</name>
|
|
<email>vyazelenko@protonmail.com</email>
|
|
<url>https://github.com/vyazelenko</url>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git:https://github.com/aeron-io/agrona.git</connection>
|
|
<developerConnection>scm:git:https://github.com/aeron-io/agrona.git</developerConnection>
|
|
<url>https://github.com/aeron-io/agrona.git</url>
|
|
</scm>
|
|
</project>
|