From 3b8aaea4dfcfa8bbfc587a034036bc1b297089d1 Mon Sep 17 00:00:00 2001 From: david_williams <david_williams> Date: Wed, 11 Jun 2008 15:31:10 +0000 Subject: [PATCH] streamline process --- .../.classpath | 3 ++ org.eclipse.wtp.releng.webupdatesite/.project | 45 +++++++++++++------ .../build-home/ant.sh | 6 +++ .../build.properties | 4 ++ .../plugin.properties | 2 + 5 files changed, 46 insertions(+), 14 deletions(-) create mode 100644 org.eclipse.wtp.releng.webupdatesite/build-home/ant.sh create mode 100644 org.eclipse.wtp.releng.webupdatesite/build.properties create mode 100644 org.eclipse.wtp.releng.webupdatesite/plugin.properties diff --git a/org.eclipse.wtp.releng.webupdatesite/.classpath b/org.eclipse.wtp.releng.webupdatesite/.classpath index 7cec603db..64c5e31b7 100644 --- a/org.eclipse.wtp.releng.webupdatesite/.classpath +++ b/org.eclipse.wtp.releng.webupdatesite/.classpath @@ -1,4 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> + <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> + <classpathentry kind="src" path="src"/> <classpathentry kind="output" path="bin"/> </classpath> diff --git a/org.eclipse.wtp.releng.webupdatesite/.project b/org.eclipse.wtp.releng.webupdatesite/.project index 95088cfb2..4fc9d06fb 100644 --- a/org.eclipse.wtp.releng.webupdatesite/.project +++ b/org.eclipse.wtp.releng.webupdatesite/.project @@ -1,17 +1,34 @@ <?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>org.eclipse.wtp.releng.webupdatesite</name> - <comment></comment> - <projects></projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.wst.validation.validationbuilder</name> - <arguments></arguments> - </buildCommand> - </buildSpec> - <natures> - <nature> - org.eclipse.wst.common.project.facet.core.nature - </nature> - </natures> + <name>org.eclipse.wtp.releng.webupdatesite</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.wst.validation.validationbuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.pde.ManifestBuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.pde.SchemaBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.wst.common.project.facet.core.nature</nature> + <nature>org.eclipse.jdt.core.javanature</nature> + <nature>org.eclipse.pde.PluginNature</nature> + </natures> </projectDescription> diff --git a/org.eclipse.wtp.releng.webupdatesite/build-home/ant.sh b/org.eclipse.wtp.releng.webupdatesite/build-home/ant.sh new file mode 100644 index 000000000..1162f9db5 --- /dev/null +++ b/org.eclipse.wtp.releng.webupdatesite/build-home/ant.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +ANT_CMD=${ANT_HOME}/bin/ant + +exec "$ANT_CMD" "$@" + diff --git a/org.eclipse.wtp.releng.webupdatesite/build.properties b/org.eclipse.wtp.releng.webupdatesite/build.properties new file mode 100644 index 000000000..b5e3b75ef --- /dev/null +++ b/org.eclipse.wtp.releng.webupdatesite/build.properties @@ -0,0 +1,4 @@ +source.. = src/ +bin.includes = META-INF/,\ + .,\ + plugin.properties diff --git a/org.eclipse.wtp.releng.webupdatesite/plugin.properties b/org.eclipse.wtp.releng.webupdatesite/plugin.properties new file mode 100644 index 000000000..39e88f73e --- /dev/null +++ b/org.eclipse.wtp.releng.webupdatesite/plugin.properties @@ -0,0 +1,2 @@ +#Properties file for org.eclipse.wtp.releng.webupdatesite +Bundle-Name.0 = Webupdatesite \ No newline at end of file -- GitLab