File: 0003-ignore-integration-tests.patch

package info (click to toggle)
jackson-dataformat-yaml 2.8.11-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 520 kB
  • sloc: java: 4,129; xml: 132; sh: 4; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 715 bytes parent folder | download | duplicates (3)
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
26
27
28
29
From: "ebourg@apache.org" <ebourg@apache.org>
Date: Fri, 13 Oct 2017 23:36:54 +0200
Subject: ignore-integration-tests

Forwarded: not-needed
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index ce60c83..b304a60 100644
--- a/pom.xml
+++ b/pom.xml
@@ -175,6 +175,15 @@
             </includes>
           </configuration>
         </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <testExcludes>
+            <testExclude>**/OSGiIT.java</testExclude>
+          </testExcludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>