BAEL-4113 Relocate the ExceptionBenchmark class

This commit is contained in:
Nguyen Nam Thai 2020-07-19 22:07:57 +07:00
parent 1ac7e20321
commit 76b1717953
2 changed files with 14 additions and 1 deletions

View File

@ -120,6 +120,18 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<manifest>
<mainClass>com.baeldung.performancetests.MappingFrameworksPerformance</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
@ -178,6 +190,7 @@
<jmh-core.version>1.21</jmh-core.version>
<jmh-generator.version>1.21</jmh-generator.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
<!--
Java source/target to use for compilation.

View File

@ -1,4 +1,4 @@
package com.baeldung;
package com.baeldung.performancetests.exception;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;