Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 113585 | Differences between
and this patch

Collapse All | Expand All

(-)build.xml.orig (-4 / +6 lines)
Lines 18-24 Link Here
18
18
19
  <property name="defaulttargetdir" value="${basedir}/build">
19
  <property name="defaulttargetdir" value="${basedir}/build">
20
  </property>
20
  </property>
21
  <property name="libdir" value="${user.home}/.maven/repository">
21
  <property name="libdir" value="${basedir}/build/lib">
22
  </property>
22
  </property>
23
  <property name="classesdir" value="${basedir}/build/classes" />
23
  <property name="classesdir" value="${basedir}/build/classes" />
24
  <property name="srcdir" value="${basedir}/build/src" />
24
  <property name="srcdir" value="${basedir}/build/src" />
Lines 51-60 Link Here
51
  <target name="init" description="o Initializes some properties">
51
  <target name="init" description="o Initializes some properties">
52
    <mkdir dir="${libdir}">
52
    <mkdir dir="${libdir}">
53
    </mkdir>
53
    </mkdir>
54
    <condition property="noget">
54
    <!--<condition property="noget">
55
      <equals arg2="only" arg1="${build.sysclasspath}">
55
      <equals arg2="only" arg1="${build.sysclasspath}">
56
      </equals>
56
      </equals>
57
    </condition>
57
    </condition>-->
58
	<property name="noget" value="true">
59
	</property>
58
    <!--Test if JUNIT is present in ANT classpath-->
60
    <!--Test if JUNIT is present in ANT classpath-->
59
61
60
    <available property="Junit.present" classname="junit.framework.Test">
62
    <available property="Junit.present" classname="junit.framework.Test">
Lines 92-98 Link Here
92
    </copy>
94
    </copy>
93
  </target>
95
  </target>
94
96
95
  <target name="jar" description="o Create the jar" depends="compile,test">
97
  <target name="jar" description="o Create the jar" depends="compile">
96
    <jar jarfile="${defaulttargetdir}/${final.name}.jar" excludes="**/*.html" basedir="${classesdir}" manifest="${basedir}/src/conf/MANIFEST.MF" />
98
    <jar jarfile="${defaulttargetdir}/${final.name}.jar" excludes="**/*.html" basedir="${classesdir}" manifest="${basedir}/src/conf/MANIFEST.MF" />
97
  </target>
99
  </target>
98
  <target name="dist-jar" depends="compile">
100
  <target name="dist-jar" depends="compile">

Return to bug 113585