forked from pool/disruptor
b3a47114f9
- Update to 3.4.4: * 3.4.4 Lazy-loading of Logger instances - See #370 & #376 * 3.4.3 Add Automatic-Module-Name to MANIFEST.MF * 3.4.2 Fix race condition in BatchEventProcessor with 3 or more starting/halting concurrently. * 3.4.1 Fix race between run() and halt() on BatchEventProcessor. * 3.4.0 Drop support for JDK6, support JDK7 and above only. Add ThreadHints.onSpinWait to all busy spins within Disruptor. Increase default sleep time for LockSupport.parkNanos to prevent busy spinning. * 3.3.8 Revert belt and braces WaitStrategy signalling. * 3.3.7 Add batch size to BatchStartAware.onBatchStart() Upgrade to newer versions of gradle, checkstyle and JUnit Deprecate classes & methods for later release Remove JMock and rewrite tests accordingly - Remove disruptor-3.3.2-jmock.patch OBS-URL: https://build.opensuse.org/request/show/939148 OBS-URL: https://build.opensuse.org/package/show/Java:packages/disruptor?expand=0&rev=4
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.lmax</groupId>
|
|
<artifactId>disruptor</artifactId>
|
|
<version>3.4.4</version>
|
|
<name>Disruptor Framework</name>
|
|
<description>Disruptor - Concurrent Programming Framework</description>
|
|
<url>http://lmax-exchange.github.com/disruptor</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>team</id>
|
|
<name>LMAX Disruptor Development Team</name>
|
|
<email>lmax-disruptor@googlegroups.com</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git@github.com:LMAX-Exchange/disruptor.git</connection>
|
|
<url>scm:git@github.com:LMAX-Exchange/disruptor.git</url>
|
|
</scm>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|