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

Collapse All | Expand All

(-)build.properties (-1 / +2 lines)
Lines 6-12 Link Here
6
src.java.dir=${src}
6
src.java.dir=${src}
7
build=classes
7
build=classes
8
jars=jars
8
jars=jars
9
libs=libs
9
xmltools=/usr/share/tigase-xmltools/lib/tigase-xmltools.jar
10
utils=/usr/share/tigase-utils/lib/tigase-utils.jar
10
docs=docs
11
docs=docs
11
dist=dist
12
dist=dist
12
unittests=tests/unittests/src
13
unittests=tests/unittests/src
(-)ant-definitions.xml (-12 / +2 lines)
Lines 13-25 Link Here
13
		destdir="${build}"
13
		destdir="${build}"
14
		debug="on"
14
		debug="on"
15
		encoding="UTF-8"
15
		encoding="UTF-8"
16
		classpath="${xmltools}:${utils}"
16
		deprecation="@{deprecation}">
17
		deprecation="@{deprecation}">
17
		<compilerarg line="@{xlint}"/>
18
		<compilerarg line="@{xlint}"/>
18
		<classpath>
19
		 <fileset dir="${libs}">
20
	    <include name="**/*.jar"/>
21
		 </fileset>
22
		</classpath>
23
	 </javac>
19
	 </javac>
24
	</sequential>
20
	</sequential>
25
 </macrodef>
21
 </macrodef>
Lines 79-92 Link Here
79
        version="true"
75
        version="true"
80
        verbose="false"
76
        verbose="false"
81
        protected="true"
77
        protected="true"
78
	classpath="${xmltools};${utils}"
82
        bottom="${javadoc-copyright}">
79
        bottom="${javadoc-copyright}">
83
        <link offline="true" href="http://java.sun.com/j2se/1.5.0/docs/api/"
84
          packagelistLoc="package-list"/>
85
	<classpath>
86
	  <fileset dir="${libs}">
87
	    <include name="**/*.jar"/>
88
	  </fileset>
89
	</classpath>
90
      </javadoc>
80
      </javadoc>
91
    </sequential>
81
    </sequential>
92
  </macrodef>
82
  </macrodef>

Return to bug 238755