summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorThomas Koch <thomas@koch.ro>2022-07-10 12:31:13 +0000
committerThomas Koch <thomas@koch.ro>2022-07-10 12:33:32 +0000
commit04ca24d7dc45994dae9aa90334b18059456c3b30 (patch)
tree71406b9416fff0e25fa4480f42ae515f5b656882 /build.xml
parente611305787cae1567c6fa8f00a81732e826374fc (diff)
rm dead stuff from build.xml
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml22
1 files changed, 2 insertions, 20 deletions
diff --git a/build.xml b/build.xml
index 5e5135a20..7cb49fb1f 100644
--- a/build.xml
+++ b/build.xml
@@ -49,7 +49,6 @@
<property name="release_main" location="${release}/MAIN"/>
<property name="release_windows" location="${release}/WINDOWS"/>
<property name="release_mac" location="${release}/MAC"/>
- <property name="git" location=".git"/>
<property name="defaults" location="defaults"/>
<property name="RDFaParser" location="RDFaParser"/>
@@ -58,11 +57,6 @@
<property name="portalsearch" location="htroot/portalsearch/"/>
<property name="img-2" location="htroot/yacy/ui/img-2"/>
- <!-- determining if the .git directory exists -->
- <condition property="isGit">
- <available file="${git}" />
- </condition>
-
<target name="install-ivy" description="--> install ivy">
<local name="ivy.download.dir"/><property name="ivy.download.dir" value="${basedir}/ivy" />
<local name="ivy.download.file"/><property name="ivy.download.file" value="${ivy.download.dir}/ivy.jar" />
@@ -130,7 +124,7 @@
</fileset>
</javadoc>
</target>
-
+
<!-- define the classpath that should be used for compiling -->
<!-- when changing paths here, please also update the paths in /addon/YaCy.app/Contents/Info.plist -->
<path id="project.class.path">
@@ -141,18 +135,6 @@
</path>
<target name="compile-core" depends="init,resolve" description="compile YaCy core">
-
- <!-- compile yacyBuildProperties.java -->
- <!-- *obsolete* - for Gradle migration process changed to use *.java.template file for filtered copy
- <javac srcdir="${build}" destdir="${build}" sourcepath="${src}"
- debug="true" debuglevel="lines,vars,source" includeantruntime="false"
- includes="net/yacy/peers/operation/yacyBuildProperties.java"
- source="${javacSource}" target="${javacTarget}" encoding="UTF-8">
- <classpath refid="project.class.path" />
- <compilerarg value="-Xlint"/>
- </javac>
- <delete file="${build}/BuildProperties.java" />
--->
<!-- compile the core sources -->
<echo message="project.class.path: ${toString:project.class.path}" />
<javac srcdir="${src}/" destdir="${build}"
@@ -534,7 +516,7 @@
</exec>
<move file="${release_windows}/yacy_v${releaseVersion}_${releaseNr}.exe"
tofile="${release}/yacy_v${releaseVersion}_${releaseNr}.exe" />
-
+
<delete dir="${release_main}"/>
<delete dir="${release_windows}" failonerror="false" />
</target>