Skip to content

Commit 09ee383

Browse files
committed
Fix the benchmark profile to generate
`test-classes/META-INF/BenchmarkList`
1 parent e93acae commit 09ee383

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1802,6 +1802,17 @@
18021802
</properties>
18031803
<build>
18041804
<plugins>
1805+
<!-- Enable the compilation of the benchmark; generates `test-classes/META-INF/BenchmarkList` -->
1806+
<plugin>
1807+
<artifactId>maven-compiler-plugin</artifactId>
1808+
<version>${commons.compiler.version}</version>
1809+
<configuration combine.self="override">
1810+
<testIncludes>
1811+
<testInclude>**/*</testInclude>
1812+
</testIncludes>
1813+
</configuration>
1814+
</plugin>
1815+
<!-- Hook the benchmarks to the test phase -->
18051816
<plugin>
18061817
<groupId>org.codehaus.mojo</groupId>
18071818
<artifactId>exec-maven-plugin</artifactId>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ The <action> type attribute can be add,update,fix,remove.
5959
<body>
6060
<release version="94" date="YYYY-MM-DD" description="This is a feature and maintenance release. Java 8 or later is required.">
6161
<!-- FIX -->
62+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix the benchmark profile to generate `test-classes/META-INF/BenchmarkList`.</action>
6263
<!-- ADD -->
6364
<!-- UPDATE -->
6465
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump minimalMavenBuildVersion from 3.6.3 to 3.8.1.</action>

0 commit comments

Comments
 (0)