org.eclipse.jdt.core/scripts/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.12 - (download) (as text) (annotate)
Tue Apr 28 16:53:02 2009 UTC (7 months ago) by oliviert
Branch: MAIN
CVS Tags: v_974_R35x, v_969_R35x, v_A03, v_A02, v_A01, v_A00, v_A07, v_A06, v_A05, v_A04, v_A09, v_A08, v_968_R35x, v_958, v_959, v_954, v_955, v_956, v_957, v_971_R35x, v_978_R35x, v_961, v_960, v_963, v_962, v_964_R35x, v_977_R35x, R3_5, v_A18, v_A19, v_A14, v_A15, v_A16, v_A10, v_A11, v_A12, v_A13, v_966_R35x, v_970_R35x, v_A21, v_A20, v_A23, v_A22, v_975_R35x, v_976_R35x, v_967_R35x, v_965_R35x, v_A21d, v_A21a, jsr308_A22, v_972_R35x, R3_5_1, v_A17b, v_A17c, v_973_R35x, HEAD
Branch point for: JSR_308, R3_5_maintenance
Changes since 1.11: +11 -1 lines
HEAD - Fix copyright
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright (c) 2007, 2009 IBM Corporation and others.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
    
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<project name="export-executable" default="build" basedir=".">

	<property name="output" value="bin" />
	<property name="jar_file" value="ecj.jar" />

	<target name="build">
		<delete file="${basedir}/${jar_file}" failonerror="no" />
		<delete dir="${output}" failonerror="no" />
		<mkdir dir="${output}" />

		<javac srcdir="${basedir}" destdir="${output}"
				debuglevel="lines,source"
				source="1.3"
				target="1.2"
			excludes="org/eclipse/jdt/internal/compiler/tool/*,**/apt/**">
			<compilerarg line="-Xlint:none"/>
		</javac>

		<javac destdir="${output}"
				debuglevel="lines,source"
				source="1.6"
				target="1.6"
				includes="org/eclipse/jdt/internal/compiler/tool/*">
			<src path="${basedir}"/>
			<include name="org/eclipse/jdt/internal/compiler/tool/*"/>
			<include name="**/apt/**"/>
			<compilerarg line="-Xlint:none"/>
		</javac>

		<zip destfile="${basedir}/${jar_file}">
			<fileset dir="${output}" />
			<fileset dir="${basedir}">
				<include name="about.html"/>
				<include name="**/*.rsc"/>
				<include name="META-INF/**"/>
				<include name="**/*.properties"/>
				<exclude name="META-INF/eclipse.inf"/>
			</fileset>
		</zip>
		<delete dir="${output}" />
	</target>
</project>