Author: wsmoak
Date: Sat Nov 12 20:20:58 2005
New Revision: 332884
URL: http://svn.apache.org/viewcvs?rev=332884&view=rev
Log:
Added dependency scopes. (This does not affect the Maven 1.0 build, but helps
with the conversion to m2 poms.)
Adopt standard group and artifact names for Sun's Servlet API jar.
Move to the Validator 1.2 release candidate.
Modified:
struts/build/trunk/project.xml
Modified: struts/build/trunk/project.xml
URL:
http://svn.apache.org/viewcvs/struts/build/trunk/project.xml?rev=332884&r1=332883&r2=332884&view=diff
==============================================================================
--- struts/build/trunk/project.xml (original)
+++ struts/build/trunk/project.xml Sat Nov 12 20:20:58 2005
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!--
/*
- * Copyright 2001-2004 The Apache Software Foundation.
+ * Copyright 2001-2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -284,10 +284,13 @@
<!-- Standard dependencies -->
<dependency>
- <groupId>servletapi</groupId>
- <artifactId>servletapi</artifactId>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
<version>2.3</version>
<url>http://java.sun.com/products/servlet/</url>
+ <properties>
+ <scope>provided</scope>
+ </properties>
</dependency>
<dependency>
@@ -343,7 +346,7 @@
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
- <version>SNAPSHOT</version>
+ <version>1.2.0-RC3</version>
<url>http://jakarta.apache.org/commons/validator/</url>
<properties>
<war.bundle>true</war.bundle>
@@ -377,6 +380,9 @@
<artifactId>junit</artifactId>
<version>3.8.1</version>
<url>http://www.junit.org/</url>
+ <properties>
+ <scope>test</scope>
+ </properties>
</dependency>
</dependencies>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]