exist-core-jmh
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.exist-db</groupId>
<artifactId>exist-core-jmh</artifactId>
<version>6.2.0</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>exist-parent</artifactId>
<groupId>org.exist-db</groupId>
<version>6.2.0</version>
<relativePath>../exist-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>exist-core-jmh</artifactId>
<name>eXist-db Core JMH benchmarks</name>
<description>JMH Benchmarks for exist-core</description>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<licenseSets>
<licenseSet>
<header>${project.parent.relativePath}/LGPL-21-license.template.txt</header>
<excludes>
<exclude>src/main/java/org/exist/storage/lock/LockTableBenchmark.java</exclude>
<exclude>src/main/java/org/exist/xquery/utils/StringJoinBenchmark.java</exclude>
<exclude>src/main/java/org/exist/xquery/utils/URIUtilsBenchmark.java</exclude>
</excludes>
</licenseSet>
<licenseSet>
<header>${project.parent.relativePath}/FDB-backport-LGPL-21-ONLY-license.template.txt</header>
<includes>
<include>src/main/java/org/exist/storage/lock/LockTableBenchmark.java</include>
<include>src/main/java/org/exist/xquery/utils/StringJoinBenchmark.java</include>
<include>src/main/java/org/exist/xquery/utils/URIUtilsBenchmark.java</include>
</includes>
</licenseSet>
</licenseSets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<failOnWarning>true</failOnWarning>
<ignoredUnusedDeclaredDependencies>
<ignoredUnusedDeclaredDependency>org.openjdk.jmh:jmh-generator-annprocess:jar:${jmh.version}</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>${project.build.target}</compilerVersion>
<source>${project.build.source}</source>
<target>${project.build.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>${project.artifactId}-${project.version}-benchmarks</finalName>
<transformers>
<transformer>
<mainClass>org.openjdk.jmh.Main</mainClass>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.36</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<jmh.version>1.36</jmh.version>
<uberjar.name>benchmarks</uberjar.name>
</properties>
</project>