aboutsummaryrefslogtreecommitdiffstats
path: root/it/projects/java-bytecode/build.xml
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2015-07-16 13:51:30 +0200
committerDuarte Meneses <duarte.meneses@sonarsource.com>2015-07-20 12:59:15 +0200
commit73b46e381ff0a7a0b3bc280ac45de592e547513a (patch)
treea784542f624aa1a97be6f77eed75eda094be2166 /it/projects/java-bytecode/build.xml
parentf20b8927e6b8747b37ae750de393215312b774c2 (diff)
downloadsonar-scanner-cli-73b46e381ff0a7a0b3bc280ac45de592e547513a.tar.gz
sonar-scanner-cli-73b46e381ff0a7a0b3bc280ac45de592e547513a.zip
merge it-sonar-runner and update groupId
Diffstat (limited to 'it/projects/java-bytecode/build.xml')
-rw-r--r--it/projects/java-bytecode/build.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/it/projects/java-bytecode/build.xml b/it/projects/java-bytecode/build.xml
new file mode 100644
index 0000000..d24c2b8
--- /dev/null
+++ b/it/projects/java-bytecode/build.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="Java Bytecode" default="all" basedir="." xmlns:sonar="antlib:org.sonar.ant">
+
+ <property name="lib.dir" value="../ant-libs"/>
+
+ <property name="build.dir" value="build"/>
+
+ <property name="classes.dir" value="${build.dir}/classes"/>
+
+ <path id="classpath">
+ <fileset dir="./lib" includes="*.jar" />
+ </path>
+
+ <target name="clean" description="Remove all files created by the build process.">
+ <delete dir="${build.dir}" />
+ </target>
+
+ <target name="init">
+ <mkdir dir="${build.dir}" />
+ <mkdir dir="${classes.dir}" />
+ </target>
+
+ <target name="compile" depends="init">
+ <javac destdir="${classes.dir}" classpathref="classpath" fork="true" debug="true" includeAntRuntime="false">
+ <src path="src"/>
+ </javac>
+ </target>
+
+ <target name="all"
+ depends="clean,compile" />
+
+</project>