~ubuntu-branches/ubuntu/raring/wagon2/raring-proposed

« back to all changes in this revision

Viewing changes to debian/patches/do_not_run_http_tests.patch

  • Committer: Package Import Robot
  • Author(s): Damien Raude-Morvan
  • Date: 2012-01-29 23:23:22 UTC
  • Revision ID: package-import@ubuntu.com-20120129232322-sv7vn8958hvr69e9
Tags: 2.2-1
* New upstream release:
  - It's a major release so use a new source package: wagon2.
  - Old wagon package have to be kept for maven 2.x build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Torsten Werner <twerner@debian.org>
 
2
Date: Mon, 29 Aug 2011 21:39:30 +0200
 
3
Subject: [PATCH] do not run LightweightHttp* tests
 
4
 
 
5
---
 
6
 wagon-providers/wagon-http-lightweight/pom.xml |   14 ++++++++++++++
 
7
 1 files changed, 14 insertions(+), 0 deletions(-)
 
8
 
 
9
Index: b/wagon-providers/wagon-http-lightweight/pom.xml
 
10
===================================================================
 
11
--- a/wagon-providers/wagon-http-lightweight/pom.xml
 
12
+++ b/wagon-providers/wagon-http-lightweight/pom.xml
 
13
@@ -58,4 +58,18 @@
 
14
       <scope>test</scope>
 
15
     </dependency>
 
16
   </dependencies>
 
17
+
 
18
+  <build>
 
19
+    <plugins>
 
20
+      <plugin>
 
21
+        <groupId>org.apache.maven.plugins</groupId>
 
22
+        <artifactId>maven-surefire-plugin</artifactId>
 
23
+        <configuration>
 
24
+          <excludes>
 
25
+            <exclude>**/LightweightHttp*</exclude>
 
26
+          </excludes>
 
27
+        </configuration>
 
28
+      </plugin>
 
29
+    </plugins>
 
30
+  </build>
 
31
 </project>
 
32
Index: b/wagon-providers/wagon-http/pom.xml
 
33
===================================================================
 
34
--- a/wagon-providers/wagon-http/pom.xml
 
35
+++ b/wagon-providers/wagon-http/pom.xml
 
36
@@ -104,6 +104,17 @@
 
37
           </execution>
 
38
         </executions>
 
39
       </plugin>
 
40
+      
 
41
+      <plugin>
 
42
+        <groupId>org.apache.maven.plugins</groupId>
 
43
+        <artifactId>maven-surefire-plugin</artifactId>
 
44
+        <configuration>
 
45
+          <excludes>
 
46
+            <exclude>**/HttpsWagon*</exclude>
 
47
+            <exclude>**/HttpWagon*</exclude>
 
48
+          </excludes>
 
49
+        </configuration>
 
50
+      </plugin>
 
51
     </plugins>
 
52
   </build>
 
53
 </project>