[java-idp-integration-tests COMMIT] /trunk/pom.xml

noreply at shibboleth.net noreply at shibboleth.net
Sat Jun 21 18:37:57 EDT 2014


Author: tzeller
Date: Sat Jun 21 18:37:56 2014
New Revision: 17

URL: http://svn.shibboleth.net/view/java-idp-integration-tests?rev=17&view=rev
Log:
Add jetty-distribution:zip as a runtime dependency and change the type of the Jetty and IdP distributions from tar.gz. to zip for better platform compatibility when unpacking.

Modified:
    trunk/pom.xml

Modified: trunk/pom.xml
URL: http://svn.shibboleth.net/view/java-idp-integration-tests/trunk/pom.xml?rev=17&r1=16&r2=17&view=diff
==============================================================================
--- trunk/pom.xml (original)
+++ trunk/pom.xml Sat Jun 21 18:37:56 2014
@@ -61,6 +61,23 @@
         </dependency>
 
         <!-- Runtime Dependencies -->
+        <dependency>
+            <groupId>org.eclipse.jetty</groupId>
+            <artifactId>jetty-distribution</artifactId>
+            <version>${jetty.version}</version>
+            <scope>runtime</scope>
+            <type>zip</type>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.eclipse.jetty</groupId>
+                    <artifactId>test-jetty-webapp</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.eclipse.jetty</groupId>
+                    <artifactId>test-proxy-webapp</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
 
         <!-- Test Dependencies -->
         <dependency>
@@ -133,7 +150,7 @@
                                     <groupId>net.shibboleth.idp</groupId>
                                     <artifactId>idp-distribution</artifactId>
                                     <version>${idp.version}</version>
-                                    <type>tar.gz</type>
+                                    <type>zip</type>
                                 </artifactItem>
                             </artifactItems>
                             <outputDirectory>${test-distributions.directory}</outputDirectory>
@@ -152,7 +169,7 @@
                                     <groupId>org.eclipse.jetty</groupId>
                                     <artifactId>jetty-distribution</artifactId>
                                     <version>${jetty.version}</version>
-                                    <type>tar.gz</type>
+                                    <type>zip</type>
                                 </artifactItem>
                             </artifactItems>
                             <outputDirectory>${test-distributions.directory}</outputDirectory>



More information about the commits mailing list