Author: jmitchell Date: Wed Jan 19 14:16:30 2005 New Revision: 125673 URL: http://svn.apache.org/viewcvs?view=rev&rev=125673 Log: fix pom for bsf Modified: struts/bsf/trunk/project.xml
Modified: struts/bsf/trunk/project.xml Url: http://svn.apache.org/viewcvs/struts/bsf/trunk/project.xml?view=diff&rev=125673&p1=struts/bsf/trunk/project.xml&r1=125672&p2=struts/bsf/trunk/project.xml&r2=125673 ============================================================================== --- struts/bsf/trunk/project.xml (original) +++ struts/bsf/trunk/project.xml Wed Jan 19 14:16:30 2005 @@ -1,9 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <project> <pomVersion>3</pomVersion> + <name>struts-bsf</name> <id>struts-bsf</id> - <name>Struts BSF Actions</name> - <currentVersion>0.5-SNAPSHOT</currentVersion> + <groupId>struts</groupId> + <currentVersion>1.0-dev</currentVersion> <organization> <name /> @@ -81,15 +82,36 @@ <!-- <contributors /> --> <dependencies> + <dependency> - <id>servletapi</id> + <groupId>servletapi</groupId> + <artifactId>servletapi</artifactId> <version>2.3</version> + <url>http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html</url> </dependency> + <dependency> - <id>struts</id> - <version>1.1</version> + <groupId>struts</groupId> + <artifactId>struts-core</artifactId> + <version>1.3.0-dev</version> + <url>http://jakarta.apache.org/struts/</url> + <properties> + <war.bundle>true</war.bundle> + <cactus.bundle>true</cactus.bundle> + </properties> </dependency> - + + <dependency> + <groupId>struts</groupId> + <artifactId>struts-taglib</artifactId> + <version>1.3.0-dev</version> + <url>http://jakarta.apache.org/struts/</url> + <properties> + <war.bundle>true</war.bundle> + <cactus.bundle>true</cactus.bundle> + </properties> + </dependency> + <dependency> <id>bsf</id> <version>2.3.0</version> @@ -104,26 +126,32 @@ <id>commons-logging</id> <version>1.0.3</version> </dependency> + <dependency> <id>commons-beanutils</id> <version>1.7.0</version> </dependency> + <dependency> <id>commons-digester</id> <version>1.6</version> </dependency> + <dependency> <id>commons-fileupload</id> <version>1.0</version> </dependency> + <dependency> <id>commons-validator</id> <version>1.1.3</version> </dependency> + <dependency> <id>oro</id> <version>2.0.7</version> </dependency> + </dependencies> <build> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
