jctools-concurrency-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.jponge.jct</groupId>
<artifactId>jctools-concurrency-test</artifactId>
<version>4.0.2-RC2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>jctools-parent</artifactId>
<groupId>io.github.jponge.jct</groupId>
<version>4.0.2-RC2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jctools-concurrency-test</artifactId>
<name>concurrency-test</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.testSource}</source>
<target>${maven.compiler.testTarget}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>main</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>concurrency-test</finalName>
<transformers>
<transformer>
<mainClass>org.openjdk.jcstress.Main</mainClass>
</transformer>
<transformer>
<resource>META-INF/TestList</resource>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<jcstress.version>0.15</jcstress.version>
</properties>
</project>