- Revision
- 638
- Author
- tastapod
- Date
- 2006-12-22 15:23:11 -0600 (Fri, 22 Dec 2006)
Log Message
[dn] about to rearrange to make plugins easier to build
Modified Paths
- trunk/build.xml
- trunk/plugins/eclipse/plugin.xml
- trunk/plugins/eclipse-feature/feature.xml
- trunk/plugins/eclipse-site/site.xml
Diff
Modified: trunk/build.xml (637 => 638)
--- trunk/build.xml 2006-12-22 01:07:07 UTC (rev 637) +++ trunk/build.xml 2006-12-22 21:23:11 UTC (rev 638) @@ -35,7 +35,7 @@ <property name="jbehave_jar" location="${binaries_dir}/jbehave-${version}.jar" /> <property name="jbehave_src_zip" location="${binaries_dir}/jbehave-${version}-src.zip" /> <property name="website_dist_dir" location="${dist_dir}/website"/> - <property name="javadoc_dist_dir" location="${website_dist_dir}/docs/javadoc"/> + <property name="javadoc_dist_dir" location="${website_dist_dir}/javadoc"/> <!-- examples --> <property name="example" value="hellbound" /> @@ -50,11 +50,7 @@ <target name="build" depends="verify-behaviour, build-source-zip" description="build the jbehave binary and zip up the project" /> - <target name="dist" depends="clean, build, website" description="assemble distribution"> - <zip taskname="assemble release" destfile="${jbehave_zip}" update="true"> - <zipfileset prefix="jbehave-${version}" dir="${dist_dir}"/> - </zip> - </target> + <target name="dist" depends="clean, build, javadoc" description="create distribution" /> <!-- build and assemble --> <target name="-init"> @@ -83,12 +79,13 @@ <target name="build-source-zip" depends="-init" description="Assemble the source jar"> <mkdir dir="${binaries_dir}" /> - <zip taskname="jbehave source jar" destfile="${jbehave_src_zip}" update="true"> + <zip taskname="jbehave source jar" destfile="${jbehave_src_zip}" update="true" filesonly="true"> <zipfileset prefix="jbehave-${version}" dir="${basedir}"> <exclude name="delete_me/**" /> <exclude name="bin/**" /> <exclude name="classes/**" /> - </zipfileset> excludes="delete_me/**, bin/**, classes/**, website/output/**" /> + <exclude name="website/output/**" /> + </zipfileset> </zip> </target>
Modified: trunk/plugins/eclipse/plugin.xml (637 => 638)
--- trunk/plugins/eclipse/plugin.xml 2006-12-22 01:07:07 UTC (rev 637) +++ trunk/plugins/eclipse/plugin.xml 2006-12-22 21:23:11 UTC (rev 638) @@ -1,6 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> -<plugin> +<plugin + id="JBehave" + name="JBehave" + version="0.9.0" + provider-name="jbehave.org"> <extension point="org.eclipse.debug.core.launchConfigurationTypes"> <launchConfigurationType @@ -16,8 +20,8 @@ id="jbehave.plugin.eclipse.launchconfigImage" configTypeID="jbehave.plugin.eclipse.launchconfig" icon="icons/behave.gif"> - </launchConfigurationTypeImage> -</extension> + </launchConfigurationTypeImage> + </extension> <extension point="org.eclipse.debug.ui.launchConfigurationTabGroups"> <launchConfigurationTabGroup @@ -126,7 +130,4 @@ </editorContribution> </extension> - - - </plugin>
Modified: trunk/plugins/eclipse-feature/feature.xml (637 => 638)
--- trunk/plugins/eclipse-feature/feature.xml 2006-12-22 01:07:07 UTC (rev 637) +++ trunk/plugins/eclipse-feature/feature.xml 2006-12-22 21:23:11 UTC (rev 638) @@ -1,43 +1,58 @@ -<?xml version="1.0" encoding="UTF-8"?> -<feature - id="jbehave.plugin.eclipse.feature" - label="JBehave" - version="0.5.2" - provider-name="JBehave" - plugin="jbehave.plugin.eclipse" - image="behave.gif"> - - <description url="" - Jbehave Plugin - </description> - - <copyright url="" - Copyright © 2003-2006 JBehave - </copyright> - - <license url="" - Copyright © 2003-2006 JBehave +<?xml version="1.0" encoding="UTF-8"?> +<feature + id="jbehave.plugin.eclipse.feature" + label="JBehave" + version="0.9.0" + provider-name="JBehave" + plugin="org.jbehave.eclipse" + image="behave.gif"> + <description url="" + JBehave Plugin + </description> + + <copyright url="" + Copyright © 2003-2006 jbehave.org + </copyright> + + <license url="" + Copyright © 2003-2006 jbehave.org All rights reserved. - Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +modification, are permitted provided that the following conditions +are met: +Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. +Neither the name of JBehave nor the names of its contributors +may be used to endorse or promote products derived from this +software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT +NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT,INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + </license> -Neither the name of JBehave nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + <url> + <update label="JBehave Plugin for Eclipse" url="" + </url> -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - </license> - - <url> - <update label="JBehave Plugin for Eclipse" url="" - </url> - - <plugin - id="jbehave.plugin.eclipse" - download-size="0" - install-size="0" - version="0.5.2" - unpack="false"/> - -</feature> + <plugin + id="jbehave.plugin.eclipse" + download-size="0" + install-size="0" + version="0.5.2" + unpack="false"/> + +</feature>
Modified: trunk/plugins/eclipse-site/site.xml (637 => 638)
--- trunk/plugins/eclipse-site/site.xml 2006-12-22 01:07:07 UTC (rev 637) +++ trunk/plugins/eclipse-site/site.xml 2006-12-22 21:23:11 UTC (rev 638) @@ -1,7 +1,10 @@ -<?xml version="1.0" encoding="UTF-8"?> -<site> - <feature url="" id="jbehave.plugin.eclipse.feature" version="0.5.2"> - <category name="JBehave Plugin"/> - </feature> - <category-def name="JBehave Plugin" label="JBehave Plugin"/> -</site> +<?xml version="1.0" encoding="UTF-8"?> +<site> + <description url="" + JBehave plugin + </description> + <feature url="" id="jbehave.plugin.eclipse.feature" version="0.9.0"> + <category name="JBehave Plugin"/> + </feature> + <category-def name="JBehave Plugin" label="JBehave Plugin"/> +</site>
To unsubscribe from this list please visit:
