summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorreger24 <reger24@users.noreply.github.com>2022-01-21 07:42:47 +0100
committerreger24 <reger24@users.noreply.github.com>2022-01-21 07:42:47 +0100
commit4df29edd030d12ff4b21688abaa9eb6087245a2d (patch)
treed985f1b90e55f3b7cd96a07213a75037167c1f46 /build.xml
parenteb69d535a3a43982f8fc5faab893b9e455c33a00 (diff)
Implement the Ant javac task to compile htroot direct in Gradle
- import of the build.xml not longer needed and removed
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml14
1 files changed, 0 insertions, 14 deletions
diff --git a/build.xml b/build.xml
index 84d4bf8b2..560bbb828 100644
--- a/build.xml
+++ b/build.xml
@@ -330,20 +330,6 @@
</javac>
</target>
- <!-- this is a copy of compile-htroot without dependency on init (likely not needed)
- and intended to support / to by used by gradle -->
- <target name="gradle-compile-htroot" description="compile YaCy servlets">
- <!-- compile htroot, htroot/yacy and htroot/htdocsdefault -->
- <loadproperties srcFile="build.properties" />
- <javac srcdir="${htroot}/"
- excludes="processing/**"
- source="${javacSource}" target="${javacTarget}"
- debug="true" debuglevel="lines,vars,source" includeantruntime="false" encoding="UTF-8">
- <classpath refid="project.class.path" />
- <compilerarg value="-Xlint"/>
- </javac>
- </target>
-
<target name="compile" depends="compile-core, compile-htroot" description="compile YaCy core and YaCy servlets" />
<target name="all" depends="compile">