Revision 635
Added by Matt Jones almost 24 years ago
build.xml | ||
---|---|---|
105 | 105 |
<target name="jar" depends="compile"> |
106 | 106 |
<delete file="${build.dir}/${name}.jar" /> |
107 | 107 |
<copydir src="lib/srbrmi" dest="${build.dest}" /> |
108 |
<jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}" /> |
|
108 |
<jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}" |
|
109 |
excludes="**/protocols/" /> |
|
109 | 110 |
</target> |
111 |
|
|
112 |
<target name="protocol" depends="compile"> |
|
113 |
<delete file="${build.dir}/protocol.jar" /> |
|
114 |
<jar jarfile="${build.dir}/protocol.jar" basedir="${build.dest}" |
|
115 |
includes="**/protocols/" /> |
|
116 |
</target> |
|
110 | 117 |
|
111 | 118 |
<target name="install" depends="jar"> |
112 | 119 |
<mkdir dir="${installdir}/WEB-INF/lib" /> |
Also available in: Unified diff
Re-inserted changes from version 1.38 of build.xml that were accidentally
overwritten when version 1.39 was checked in. Now, building the protocol
handler jar file works again.