Author: rgardler
Date: Wed Oct 26 15:01:28 2011
New Revision: 1189255
URL: http://svn.apache.org/viewvc?rev=1189255&view=rev
Log:
Exclude new widget templates from widget deploy target (they are not really
widgets)
Move existing exclude of widget-template into the build file so that the
widget.deploy.exclude property can be used as intended - to exclude real
widgets. Default value given to exclude property will exclude no widgets.
Modified:
incubator/wookie/trunk/build.properties
incubator/wookie/trunk/build.xml
Modified: incubator/wookie/trunk/build.properties
URL:
http://svn.apache.org/viewvc/incubator/wookie/trunk/build.properties?rev=1189255&r1=1189254&r2=1189255&view=diff
==============================================================================
--- incubator/wookie/trunk/build.properties (original)
+++ incubator/wookie/trunk/build.properties Wed Oct 26 15:01:28 2011
@@ -1,4 +1,4 @@
-version=0.9.2-incubating-SNAPSHOT
+version=0.9.2-SNAPSHOT
# Uncomment to include Extra features
include.extra.features
@@ -66,11 +66,11 @@ wookie.parser.w3c.dir=parser
#
# Widget handling properties
#
-# These are ant exclude and include pattern will filter the directories in the
widgets src folder
+# These are ant exclude and include patterns that will filter the directories
in the widgets src folder
# any widgets that match this filter will be deployed at runtime in the
standalone server
# or when "ant deploy-all" is run from any widget directory
widget.deploy.include=*/build.xml
-widget.deploy.exclude=widget-template/build.xml
+widget.deploy.exclude=none
# Feature handling properties
wookie.features.dir=features
Modified: incubator/wookie/trunk/build.xml
URL:
http://svn.apache.org/viewvc/incubator/wookie/trunk/build.xml?rev=1189255&r1=1189254&r2=1189255&view=diff
==============================================================================
--- incubator/wookie/trunk/build.xml (original)
+++ incubator/wookie/trunk/build.xml Wed Oct 26 15:01:28 2011
@@ -70,6 +70,8 @@
<fileset dir="${wookie.widgets.dir}">
<include name="${widget.deploy.include}"/>
<exclude name="${widget.deploy.exclude}"/>
+ <exclude name="widget-template/build.xml"/>
+ <exclude name="templates/build.xml"/>
</fileset>
</subant>
</target>