File: ignore-benchmarks.diff

package info (click to toggle)
libcommons-lang3-java 3.12.0-2%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 9,028 kB
  • sloc: java: 84,805; xml: 4,717; makefile: 4; sh: 1
file content (20 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Ignore the JMH benchmarks
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/pom.xml
+++ b/pom.xml
@@ -792,6 +792,14 @@
           </dependency>
         </dependencies>
       </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <testExcludes>
+            <testExclude>**/HashSetvBitSetTest*</testExclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>