
Some parts of this message have been removed.
Learn more about Nabble's
security policy.
[65] branches/mule-module-saml-2.2.3/pom.xml: Update to Mule 2.2.3-SNAPSHOT, make POM inherit from mule-modules POM, and minimize list of dependencies
- Revision
- 65
- Author
- tcarlson
- Date
- 2009-10-30 20:57:47 -0500 (Fri, 30 Oct 2009)
Log Message
Update to Mule 2.2.3-SNAPSHOT, make POM inherit from mule-modules POM, and minimize list of dependencies
Modified Paths
Diff
Modified: branches/mule-module-saml-2.2.3/pom.xml (64 => 65)
--- branches/mule-module-saml-2.2.3/pom.xml 2009-10-31 01:54:56 UTC (rev 64)
+++ branches/mule-module-saml-2.2.3/pom.xml 2009-10-31 01:57:47 UTC (rev 65)
@@ -1,17 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
+ <parent>
+ <groupId>org.mule.modules</groupId>
+ <artifactId>mule-modules</artifactId>
+ <version>2.2.3-SNAPSHOT</version>
+ </parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.mule.modules</groupId>
<artifactId>mule-module-saml</artifactId>
- <name>mule-module-saml</name>
<description>This module provides security configuration within mule based on SAML (www.opensaml.org). Besides a security provider for SAML, various authentication handlers for exiting transports are provided </description>
<packaging>jar</packaging>
- <version>0.0.2-SNAPSHOT</version>
<url>http://www.muleforge.org/projects/${shortId}</url>
<inceptionYear>2008</inceptionYear>
<properties>
- <muleVersion>2.2.1</muleVersion>
<wss4jVersion>1.5.8</wss4jVersion>
<openSamlVersion>1.1b</openSamlVersion>
<geronimoSpecsVersion>1.1</geronimoSpecsVersion>
@@ -238,36 +238,17 @@
<dependency>
<groupId>org.mule</groupId>
<artifactId>mule-core</artifactId>
- <version>${muleVersion}</version>
+ <version>${version}</version>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
- <artifactId>mule-module-client</artifactId>
- <version>${muleVersion}</version>
- </dependency>
- <dependency>
- <groupId>org.mule.tests</groupId>
- <artifactId>mule-tests-functional</artifactId>
- <version>${muleVersion}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mule.modules</groupId>
- <artifactId>mule-module-builders</artifactId>
- <version>${muleVersion}</version>
- </dependency>
- <dependency>
- <groupId>org.mule.modules</groupId>
<artifactId>mule-module-spring-config</artifactId>
- <version>${muleVersion}</version>
+ <version>${version}</version>
</dependency>
-
- <!-- Mule Transport Dependencies -->
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-cxf</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
+ <version>${version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.ws.security</groupId>
@@ -276,60 +257,10 @@
</exclusions>
</dependency>
<dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-tcp</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-axis</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-ssl</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-soap</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-http</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-servlet</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.mule.transports</groupId>
- <artifactId>mule-transport-jms</artifactId>
- <version>${muleVersion}</version>
- <optional>true</optional>
- </dependency>
-
- <dependency>
<groupId>opensaml</groupId>
<artifactId>opensaml</artifactId>
<version>${openSamlVersion}</version>
</dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
-
<!-- Temporary, as the OSGi enabled version has some issues (jar not signed correctly) -->
<dependency>
<groupId>org.apache.ws.security</groupId>
@@ -337,12 +268,17 @@
<version>${wss4jVersion}</version>
</dependency>
- <!-- TODO: OSGi enable -->
<dependency>
- <groupId>org.apache.geronimo.specs</groupId>
- <artifactId>geronimo-servlet_2.4_spec</artifactId>
- <version>${geronimoSpecsVersion}</version>
- <scope>provided</scope>
- </dependency>
+ <groupId>org.mule.tests</groupId>
+ <artifactId>mule-tests-functional</artifactId>
+ <version>${version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mule.modules</groupId>
+ <artifactId>mule-module-client</artifactId>
+ <version>${version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
\ No newline at end of file
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "MuleForge Dev" group.
To post to this group, send email to
muleforgedev@... To unsubscribe from this group, send email to
muleforgedev+unsubscribe@... For more options, visit this group at http://groups.google.com/group/muleforgedev?hl=en
-~----------~----~----~----~------~----~------~--~---
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://admin.muleforge.org/manage_email