1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: we don't need the OSInfo class, so we hide its test
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2022-08-15
Index: xerial-sqlite-jdbc/pom.xml
===================================================================
--- xerial-sqlite-jdbc.orig/pom.xml
+++ xerial-sqlite-jdbc/pom.xml
@@ -120,6 +120,15 @@
<multiReleaseOutput>true</multiReleaseOutput>
</configuration>
</execution>
+ <execution>
+ <id>default-testCompile</id>
+ <phase>test-compile</phase>
+ <configuration>
+ <testExcludes>
+ <exclude>**/OSInfoTest.java</exclude><!-- We are not building OSInfo.class -->
+ </testExcludes>
+ </configuration>
+ </execution>
</executions>
</plugin>
|