Author: wsmoak Date: Fri Nov 25 23:39:41 2005 New Revision: 349096 URL: http://svn.apache.org/viewcvs?rev=349096&view=rev Log: Renamed Struts BSF to Struts Scripting. Removed the dependency on Struts Taglib, and added a dependency scope hint for Maven 2.
Modified: struts/scripting/trunk/build.xml struts/scripting/trunk/project.xml Modified: struts/scripting/trunk/build.xml URL: http://svn.apache.org/viewcvs/struts/scripting/trunk/build.xml?rev=349096&r1=349095&r2=349096&view=diff ============================================================================== --- struts/scripting/trunk/build.xml (original) +++ struts/scripting/trunk/build.xml Fri Nov 25 23:39:41 2005 @@ -1,4 +1,4 @@ -<project name="struts-bsf" default="jar" basedir="."> +<project name="struts-scripting" default="jar" basedir="."> <!-- ========== Initialization Properties ================================= --> <!-- @@ -22,7 +22,7 @@ <property name="lib.build" value="${lib.dir}/build" /> <!-- application information --> - <property name="app.name" value="struts-bsf" /> + <property name="app.name" value="struts-scripting" /> <property name="app.version" value="1.0-dev" /> <!-- The base directory for distribution targets --> Modified: struts/scripting/trunk/project.xml URL: http://svn.apache.org/viewcvs/struts/scripting/trunk/project.xml?rev=349096&r1=349095&r2=349096&view=diff ============================================================================== --- struts/scripting/trunk/project.xml (original) +++ struts/scripting/trunk/project.xml Fri Nov 25 23:39:41 2005 @@ -2,7 +2,7 @@ <project> <!-- /* - * 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. @@ -26,8 +26,8 @@ </organization> <logo>http://struts.apache.org/images/struts.gif</logo> - <id>struts-bsf</id> - <name>Struts BSF</name> + <id>struts-scripting</id> + <name>Struts Scripting</name> <currentVersion>1.0-dev</currentVersion> <inceptionYear>2003</inceptionYear> @@ -42,14 +42,20 @@ <shortDescription>Scriptable Struts Actions Using BSF</shortDescription> <description> - This project allows Struts Actions to be written in the scripting language of one's choice rather than as Java classes. It uses the Beans Scripting Framework to allow scripts to be written in any language BSF supports like Perl, Python, Ruby, JavaScript, BeanShell, and I believe even VBScript. + This project allows Struts Actions to be written in the scripting language + of one's choice rather than as Java classes. It uses the Beans Scripting + Framework to allow scripts to be written in any language BSF supports like + Perl, Python, Ruby, JavaScript, BeanShell, and I believe even VBScript. </description> + + <siteAddress>people.apache.org</siteAddress> + <siteDirectory>/www/struts.apache.org/struts-scripting/</siteDirectory> - <url>http://struts.apache.org/bsf</url> + <url>http://struts.apache.org/struts-scripting</url> <repository> - <connection>scm|svn|http|//svn.apache.org/repos/asf/struts/bsf/trunk</connection> - <developerConnection>scm|svn|https|//svn.apache.org/repos/asf/struts/bsf/trunk</developerConnection> - <url>http://svn.apache.org/repos/asf/struts/bsf/trunk</url> + <connection>scm|svn|http|//svn.apache.org/repos/asf/struts/scripting/trunk</connection> + <developerConnection>scm|svn|https|//svn.apache.org/repos/asf/struts/scripting/trunk</developerConnection> + <url>http://svn.apache.org/repos/asf/struts/scripting/trunk</url> </repository> <developers> @@ -68,6 +74,9 @@ <artifactId>servletapi</artifactId> <version>2.3</version> <url>http://java.sun.com/products/servlet/</url> + <properties> + <scope>provided</scope> + </properties> </dependency> <dependency> @@ -114,18 +123,6 @@ <groupId>struts</groupId> <artifactId>struts</artifactId> <version>1.2.8</version> - <url>http://struts.apache.org/</url> - <properties> - <war.bundle>true</war.bundle> - <cactus.bundle>true</cactus.bundle> - </properties> - <url>http://struts.apache.org/</url> - </dependency> - - <dependency> - <groupId>struts</groupId> - <artifactId>struts-taglib</artifactId> - <version>1.3.0-dev</version> <url>http://struts.apache.org/</url> <properties> <war.bundle>true</war.bundle> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]