metrics-jcstress
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jcstress</artifactId>
<version>4.2.38</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>metrics-parent</artifactId>
<groupId>io.dropwizard.metrics</groupId>
<version>4.2.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>metrics-jcstress</artifactId>
<name>Metrics JCStress tests</name>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.1</version>
<executions>
<execution>
<id>main</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${uberjar.name}</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>
<maven.install.skip>true</maven.install.skip>
<jcstress.version>0.16</jcstress.version>
<javaModuleName>com.codahale.metrics.jcstress</javaModuleName>
<javac.target>1.8</javac.target>
<uberjar.name>jcstress</uberjar.name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.skip>true</maven.deploy.skip>
<jar.skipIfEmpty>true</jar.skipIfEmpty>
</properties>
</project>