Description: compiling and running unit tests in the Maven test step
 No need to compile the tests during the compile step.
 Not running integration tests.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2022-01-29

--- a/pom.xml
+++ b/pom.xml
@@ -172,6 +172,9 @@
 			<encoding>ISO-8859-1</encoding>
 			<showDeprecation>true</showDeprecation>
 			<showWarnings>true</showWarnings>
+                        <excludes>
+                          <exclude>**/snpEffect/testCases/**</exclude>
+                        </excludes>
         </configuration>
       </plugin>
       <plugin>
@@ -205,6 +208,16 @@
           <encoding>ISO-8859-1</encoding>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.22.0</version>
+        <configuration>
+          <excludes>
+            <exclude>**/integration/**</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>
