Skip to main content
summaryrefslogtreecommitdiffstats
blob: 892ae9cbd53b2b15a42e2fa8f95b1322e1ea1399 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<project name="Export Text" default="export" basedir="..">
	<target name="init">
		<tstamp/>
		<property name="destdir" value="../../plugin-export" />
		<property name="tempdir" value="../../tmp" />
		<property name="plugin"  value="org.eclipse.text" />
		<property name="version"  value="_3.1.0" />
		<property name="dest"  value="${destdir}/${plugin}${version}" />
		<property name="destjar"  value="${destdir}/${plugin}${version}.jar" />
	</target>

	<target name="build" depends="init">
    	<eclipse.incrementalBuild project="${plugin}" kind="incr"/>
	</target>

	<target name="export" depends="build">
		<delete dir="${tempdir}" />
		<mkdir dir="${tempdir}" />
		<mkdir dir="${destdir}" />
		<delete file="${destjar}" />
		<zip zipfile="${tempdir}/src.zip">
		    <fileset dir="src" />
		    <fileset dir="projection" />
  		</zip>		
		<zip zipfile="${destjar}">
			<fileset dir=".">
			  <include name="plugin.xml" />
			  <include name="plugin.properties" />
			  <include name="META-INF/**" />
			</fileset>
			<fileset dir="bin" />
			<fileset file="${tempdir}/src.zip" />
		</zip>
		<delete dir="${tempdir}" />
	</target>
</project>

Back to the top