forked from go-lang-plugin-org/go-lang-idea-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-package.xml
58 lines (44 loc) · 2.09 KB
/
build-package.xml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<project name="Idea Google Go language scripted build file" default="package" basedir=".">
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<property name="go.plugin.name" value="ro.redeul.google.go" />
<property name="idea.community.build" location="${user.home}/Tools/idea-IU-107.322/" />
<taskdef name="javac2" classname="com.intellij.ant.Javac2">
<classpath>
<pathelement location="${idea.community.build}/redist/forms_rt.jar"/>
<pathelement location="${idea.community.build}/redist/javac2.jar"/>
<pathelement location="${idea.community.build}/redist/annotations.jar"/>
<fileset dir="${idea.community.build}" includes="**/*.jar" />
</classpath>
</taskdef>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
<mkdir dir="${dist}"/>
<echo message="Using IDEA build from: ${idea.community.build}" />
</target>
<target name="compile" depends="clean,init" description="compile the source ">
<!-- Compile the java code from ${src} into ${build} -->
<javac2 srcdir="${src}" destdir="${build}" includeantruntime="false" >
<classpath>
<fileset dir="${idea.community.build}" includes="**/*.jar" />
</classpath>
<compilerarg value="-Xlint:deprecation" />
</javac2>
</target>
<target name="package" depends="compile" description="generate the distribution">
<!-- Create the distribution archive -->
<jar jarfile="${dist}/${go.plugin.name}.jar" update="false">
<fileset dir="${build}" includes="**/*.*" />
<fileset dir="${src}" excludes="**/*.java" />
</jar>
</target>
<target name="clean" description="clean up">
<delete dir="${build}" />
<delete file="${dist}/${go.plugin.name}.jar" />
</target>
</project>