Author: rgardler
Date: Mon Sep 26 20:27:14 2011
New Revision: 1176028

URL: http://svn.apache.org/viewvc?rev=1176028&view=rev
Log:
Add a template build file for those wanting to maintain widgets outside the 
wookie tree

Added:
    incubator/wookie/trunk/widgets/build_template.xml   (with props)

Added: incubator/wookie/trunk/widgets/build_template.xml
URL: 
http://svn.apache.org/viewvc/incubator/wookie/trunk/widgets/build_template.xml?rev=1176028&view=auto
==============================================================================
--- incubator/wookie/trunk/widgets/build_template.xml (added)
+++ incubator/wookie/trunk/widgets/build_template.xml Mon Sep 26 20:27:14 2011
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<!--
+
+This is a template file for widget build directories that exist outside of
+the Wookie directory. It is useful for managing widgets in your own projects.
+
+For instructions on how to build and manage your own widgets see 
+http://incubator.apache.org/wookie/docs/widgets.html
+
+
+-->
+<project default="build-widget" basedir="." 
name="Wookie_scratchpad_widgets_build_file">
+    <property name="wookie.root.dir" location="../../wookie"/>
+    <property name="project.build.dir" location="${wookie.root.dir}/build"/>
+    <property name="widget.template.dir" 
value="${wookie.root.dir}/widgets/widget-template"/>
+    
+    <import file="${wookie.root.dir}/widgets/build.xml"/>
+       
+          <target name="build-widget" depends="_init">
+                   <zip destfile="${widget.build.dir}/${widget.shortname}.wgt"
+                        
basedir="${wookie.root.dir}/scratchpad/widgets/${widget.shortname}"
+                   />
+                       <echo>Widget package created at 
${widget.build.dir}/${widget.shortname}.wgt</echo>
+           </target>
+</project>
\ No newline at end of file

Propchange: incubator/wookie/trunk/widgets/build_template.xml
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to