Author: thomas.diesler(a)jboss.com
Date: 2008-04-16 07:15:39 -0400 (Wed, 16 Apr 2008)
New Revision: 6453
Modified:
spi/trunk/pom.xml
Log:
Fix dependency scope
Modified: spi/trunk/pom.xml
===================================================================
--- spi/trunk/pom.xml 2008-04-16 11:10:18 UTC (rev 6452)
+++ spi/trunk/pom.xml 2008-04-16 11:15:39 UTC (rev 6453)
@@ -1,11 +1,14 @@
<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">
<modelVersion>4.0.0</modelVersion>
+
+ <name>JBoss Web Services - SPI</name>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-spi</artifactId>
<packaging>jar</packaging>
+
<version>3.0.0-SNAPSHOT</version>
- <name>JBoss Web Services - SPI</name>
+
<organization>
<name>JBoss, a division of Red Hat</name>
<url>http://www.jboss.org</url>
@@ -28,21 +31,25 @@
<groupId>javax.ejb</groupId>
<artifactId>ejb-api</artifactId>
<version>3.0</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.1</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -60,6 +67,7 @@
<groupId>org.jboss.microcontainer</groupId>
<artifactId>jboss-kernel</artifactId>
<version>2.0.0.Beta4</version>
+ <scope>provided</scope>
</dependency>
</dependencies>