diff options
| -rw-r--r-- | common/.externalToolBuilders/Ant_Builder.launch | 22 | ||||
| -rw-r--r-- | common/.project | 38 | 
2 files changed, 46 insertions, 14 deletions
| diff --git a/common/.externalToolBuilders/Ant_Builder.launch b/common/.externalToolBuilders/Ant_Builder.launch new file mode 100644 index 000000000..8537b57f3 --- /dev/null +++ b/common/.externalToolBuilders/Ant_Builder.launch @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<launchConfiguration type="org.eclipse.ant.AntBuilderLaunchConfigurationType"> +<stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/> +<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> +<booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> +<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="true"/> +<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.eclipse.ant.internal.ui.antsupport.InternalAntRunner"/> +<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,"/> +<booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> +<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/MOA Common}"/> +<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> +<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> +<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/> +<stringAttribute key="org.eclipse.jdt.launching.VM_INSTALL_TYPE_ID" value="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType"/> +<stringAttribute key="org.eclipse.jdt.launching.VM_INSTALL_NAME" value="J2SE 1.4.2_07"/> +<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/MOA Common/build.xml}"/> +<mapAttribute key="org.eclipse.debug.core.environmentVariables"> +<mapEntry key="ANT_HOME" value="c:\Program Files\eclipse\plugins\org.apache.ant_1.6.5"/> +<mapEntry key="MOA_COMMON_TEST_JAR" value="tmp/moa_common_test.jar"/> +<mapEntry key="MOA_COMMON_JAR" value="tmp/moa_common.jar"/> +</mapAttribute> +</launchConfiguration> diff --git a/common/.project b/common/.project index 16d715d11..63d8d67ae 100644 --- a/common/.project +++ b/common/.project @@ -1,17 +1,27 @@  <?xml version="1.0" encoding="UTF-8"?>  <projectDescription> -  <name>MOA common</name> -  <comment></comment> -  <projects> -  </projects> -  <buildSpec> -    <buildCommand> -      <name>org.eclipse.jdt.core.javabuilder</name> -      <arguments> -      </arguments> -    </buildCommand> -  </buildSpec> -  <natures> -    <nature>org.eclipse.jdt.core.javanature</nature> -  </natures> +	<name>MOA Common</name> +	<comment></comment> +	<projects> +	</projects> +	<buildSpec> +		<buildCommand> +			<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> +			<triggers>full,incremental,</triggers> +			<arguments> +				<dictionary> +					<key>LaunchConfigHandle</key> +					<value><project>/.externalToolBuilders/Ant_Builder.launch</value> +				</dictionary> +			</arguments> +		</buildCommand> +		<buildCommand> +			<name>org.eclipse.jdt.core.javabuilder</name> +			<arguments> +			</arguments> +		</buildCommand> +	</buildSpec> +	<natures> +		<nature>org.eclipse.jdt.core.javanature</nature> +	</natures>  </projectDescription> | 
