Author: wsmoak Date: Wed Nov 30 19:49:42 2005 New Revision: 350137 URL: http://svn.apache.org/viewcvs?rev=350137&view=rev Log: Updated for 1.2.8 and added dependency scope hints for Maven 2.
Modified: struts/el/branches/STRUTS_1_2_BRANCH/project.xml Modified: struts/el/branches/STRUTS_1_2_BRANCH/project.xml URL: http://svn.apache.org/viewcvs/struts/el/branches/STRUTS_1_2_BRANCH/project.xml?rev=350137&r1=350136&r2=350137&view=diff ============================================================================== --- struts/el/branches/STRUTS_1_2_BRANCH/project.xml (original) +++ struts/el/branches/STRUTS_1_2_BRANCH/project.xml Wed Nov 30 19:49:42 2005 @@ -2,9 +2,9 @@ <project> <pomVersion>3</pomVersion> <name>struts-el</name> - <id>struts-el</id> <groupId>struts</groupId> - <currentVersion>1.2.7</currentVersion> + <artifactId>struts-el</artifactId> + <currentVersion>1.2.8</currentVersion> <inceptionYear>2003</inceptionYear> <package>org.apache.strutsel</package> <shortDescription>Extension/adaptation of Struts tag libraries to use JSP 1.2 expression language.</shortDescription> @@ -35,28 +35,30 @@ </repository> <versions /> <dependencies> + <dependency> - <groupId>servletapi</groupId> - <artifactId>servletapi</artifactId> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> <version>2.3</version> - <url>http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html</url> + <properties> + <scope>provided</scope> + </properties> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> - <version>1.0.2</version> - <url>http://jakarta.apache.org/taglibs/doc/standard-1.0-doc/intro.html</url> + <version>1.0.6</version> </dependency> <dependency> - <groupId>jstl</groupId> + <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> - <version>1.0.2</version> + <version>1.0.6</version> <url>http://jakarta.apache.org/taglibs/doc/standard-1.0-doc/intro.html</url> </dependency> <dependency> <groupId>struts</groupId> <artifactId>struts</artifactId> - <version>1.2.4</version> + <version>1.2.8</version> <url>http://jakarta.apache.org/struts/</url> </dependency> <dependency> @@ -64,6 +66,7 @@ <artifactId>httpunit</artifactId> <version>1.5.4</version> <url>http://httpunit.org/</url> + <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> @@ -76,12 +79,14 @@ <artifactId>cactus</artifactId> <version>12-1.4.1</version> <url>http://jakarta.apache.org/cactus</url> + <scope>test</scope> </dependency> <dependency> <groupId>cactus</groupId> <artifactId>cactus-ant</artifactId> <version>1.4.1</version> <url>http://jakarta.apache.org/cactus</url> + <scope>test</scope> </dependency> </dependencies> <build> @@ -99,16 +104,6 @@ <!-- J A R R E S O U R C E S --> <!-- Resources that are packaged up inside the JAR file --> <resources /> - <!-- Integration unit test cases --> - <integrationUnitTest> - <includes> - <include>**/Test*.java</include> - </includes> - <excludes> - <exclude>org/apache/strutsel/taglib/utils/*.java</exclude> - </excludes> - </integrationUnitTest> - <jars></jars> </build> <reports> <!-- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]