You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ts...@apache.org on 2007/11/06 07:00:07 UTC

svn commit: r592296 - /struts/sandbox/trunk/struts2-juel-plugin/pom.xml

Author: tschneider
Date: Mon Nov  5 22:00:05 2007
New Revision: 592296

URL: http://svn.apache.org/viewvc?rev=592296&view=rev
Log:
updating deps

Modified:
    struts/sandbox/trunk/struts2-juel-plugin/pom.xml

Modified: struts/sandbox/trunk/struts2-juel-plugin/pom.xml
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-juel-plugin/pom.xml?rev=592296&r1=592295&r2=592296&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-juel-plugin/pom.xml (original)
+++ struts/sandbox/trunk/struts2-juel-plugin/pom.xml Mon Nov  5 22:00:05 2007
@@ -1,69 +1,82 @@
 <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>
-	<groupId>com.googlecode.struts2juel</groupId>
-	<artifactId>struts2-juel-plugin</artifactId>
-	<packaging>jar</packaging>
-	<name>Struts 2 Juel Plugin</name>
-	<version>1.0.0-SNAPSHOT</version>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<configuration>
-					<source>1.5</source>
-					<target>1.5</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-	<scm>
-		<connection>
-			scm:svn:https://struts2scopeplugin.googlecode.com/svn/trunk/
-		</connection>
-		<developerConnection>
-			scm:svn:https://struts2scopeplugin.googlecode.com/svn/trunk/
-		</developerConnection>
-		<url>http://struts2scopeplugin.googlecode.com/svn/trunk/</url>
-	</scm>
-	<dependencies>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.4</version>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.struts</groupId>
-			<artifactId>struts2-core</artifactId>
-			<version>2.1.1-SNAPSHOT</version>
-		</dependency>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.4</version>
-			<scope>test</scope>
-		</dependency>
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>com.googlecode.struts2juel</groupId>
+	<artifactId>struts2-juel-plugin</artifactId>
+	<packaging>jar</packaging>
+	<name>Struts 2 Juel Plugin</name>
+	<version>1.0.0-SNAPSHOT</version>
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	<scm>
+		<connection>
+			scm:svn:https://struts2scopeplugin.googlecode.com/svn/trunk/
+		</connection>
+		<developerConnection>
+			scm:svn:https://struts2scopeplugin.googlecode.com/svn/trunk/
+		</developerConnection>
+		<url>http://struts2scopeplugin.googlecode.com/svn/trunk/</url>
+	</scm>
+	<dependencies>
+		<dependency>
+			<groupId>org.mortbay.jetty</groupId>
+			<artifactId>jsp-api-2.1</artifactId>
+			<version>6.1H.5-beta</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.struts</groupId>
+			<artifactId>struts2-core</artifactId>
+			<version>2.1.1-SNAPSHOT</version>
+			<exclusions>
+				<exclusion>
+					<groupId>javax.servlet</groupId>
+					<artifactId>servlet-api</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.4</version>
+			<scope>test</scope>
+		</dependency>
 		<dependency>
 			<groupId>de.odysseus.juel</groupId>
 			<artifactId>juel</artifactId>
 			<version>2.1.0</version>
+			<scope>test</scope>
 		</dependency>
 		<dependency>
 			<groupId>commons-beanutils</groupId>
 			<artifactId>commons-beanutils</artifactId>
 			<version>20030211.134440</version>
-		</dependency>
+		</dependency>
 		<dependency>
 			<groupId>commons-collections</groupId>
 			<artifactId>commons-collections</artifactId>
 			<version>20040616</version>
-		</dependency>
+		</dependency>
 		<dependency>
 			<groupId>commons-logging</groupId>
 			<artifactId>commons-logging</artifactId>
 			<version>1.1</version>
-		</dependency>
-	</dependencies>
+			<exclusions>
+				<exclusion>
+					<groupId>javax.servlet</groupId>
+					<artifactId>servlet-api</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+	</dependencies>
 </project>