Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Commit adf5606

Browse files
Surefire plugin config
1 parent ccdb3d7 commit adf5606

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

sansa-inference-flink/pom.xml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -284,15 +284,26 @@ under the License.
284284
</executions>
285285
</plugin>
286286

287+
288+
<!-- disable surefire -->
287289
<plugin>
288290
<groupId>org.apache.maven.plugins</groupId>
289291
<artifactId>maven-surefire-plugin</artifactId>
290-
<version>2.6</version>
292+
<version>2.19.1</version>
291293
<configuration>
292-
<excludes>
293-
<exclude>**/RDFSConformanceTest.scala</exclude>
294-
<exclude>**/OWLHorstConformanceTest.scala</exclude>
295-
</excludes>
294+
<useFile>false</useFile>
295+
<disableXmlReport>true</disableXmlReport>
296+
<!--<forkCount>1</forkCount>-->
297+
<!--<reuseForks>false</reuseForks>-->
298+
299+
<!-- If you have classpath issue like NoDefClassError,... -->
300+
<!-- useManifestOnlyJar>false</useManifestOnlyJar -->
301+
<threadCountSuites>4</threadCountSuites>
302+
<includes>
303+
<include>**/*Test.*</include>
304+
<include>**/*Suite.*</include>
305+
</includes>
306+
<skipTests>true</skipTests>
296307
</configuration>
297308
</plugin>
298309

0 commit comments

Comments
 (0)