|
6 | 6 | <property name="doc.dir" value="doc" /> |
7 | 7 | <property name="src.dir" value="src" /> |
8 | 8 | <property name="build.dir" value="classes" /> |
| 9 | + |
| 10 | + <property environment="env"/> |
| 11 | + <property file="build.properties"/> |
| 12 | + <property name="project" value="java_memcached"/> |
9 | 13 |
|
10 | | - <property environment="env"/> |
11 | | - <property file="build.properties"/> |
12 | | - <property name="project" value="java_memcached"/> |
13 | | - |
14 | | - <path id="project.class.path"> |
15 | | - <pathelement path = "lib/log4j.jar"/> |
| 14 | + <path id="project.class.path"> |
| 15 | + <pathelement path = "lib/log4j.jar"/> |
16 | 16 | </path> |
17 | 17 |
|
18 | 18 | <!-- package release --> |
|
78 | 78 | </target> |
79 | 79 |
|
80 | 80 | <!-- javadocs --> |
81 | | - <target name="javadoc" depends="clean, setup, log4j, logger"> |
| 81 | + <target name="javadoc" depends="clean, setup, log4j, logger"> |
82 | 82 | <delete> |
83 | 83 | <fileset dir="java_memcached-${ver}/javadocs" /> |
84 | 84 | </delete> |
85 | 85 |
|
86 | 86 | <javadoc sourcepath="java_memcached-${ver}/src" |
87 | 87 | destdir="java_memcached-${ver}/javadocs" |
88 | | - packagenames= "com.danga.*" |
89 | | - author= "true" |
90 | | - private="true" |
| 88 | + packagenames= "com.danga.*" |
| 89 | + author= "true" |
| 90 | + private="true" |
91 | 91 | version="true" |
92 | 92 | defaultexcludes="yes" |
93 | 93 | use="true" |
94 | 94 | windowtitle="java memcached client api documentation" |
95 | | - doctitle="<h1>${project.title} documentation (Version ${ver})</h1>" |
96 | | - bottom="Copyright © 2005 - greg whalin"> |
| 95 | + doctitle="<h1>${project.title} documentation (Version ${ver})</h1>" |
| 96 | + bottom="Copyright © 2005 - greg whalin"> |
97 | 97 | </javadoc> |
98 | | - </target> |
| 98 | + </target> |
99 | 99 |
|
100 | 100 | <!-- compilation target for packeging operations --> |
101 | 101 | <target name="pkg-compile" depends="clean, setup, log4j, logger"> |
102 | 102 | <javac debug="yes" srcdir="java_memcached-${ver}/src" destdir="java_memcached-${ver}/classes" deprecation="true"> |
103 | | - <classpath refid="project.class.path"/> |
104 | | - </javac> |
| 103 | + <classpath refid="project.class.path"/> |
| 104 | + </javac> |
105 | 105 | </target> |
106 | 106 |
|
107 | 107 | <target name="jar" depends="pkg-compile"> |
|
111 | 111 | <!-- compilation target for dev work --> |
112 | 112 | <target name="compile"> |
113 | 113 | <mkdir dir="${build.dir}"/> |
114 | | - <javac debug="yes" srcdir="${src.dir}" destdir="${build.dir}" deprecation="true" source="1.4"> |
115 | | - <classpath refid="project.class.path"/> |
116 | | - </javac> |
117 | | - </target> |
| 114 | + <javac debug="yes" srcdir="${src.dir}" destdir="${build.dir}" deprecation="true" source="1.4"> |
| 115 | + <classpath refid="project.class.path"/> |
| 116 | + </javac> |
| 117 | + </target> |
118 | 118 | </project> |
0 commit comments