Revision 1307
Added by Matt Jones over 22 years ago
build.xml | ||
---|---|---|
100 | 100 |
<property name="installdir" value="${webapps}/${context}" /> |
101 | 101 |
<property name="name" value="metacat"/> |
102 | 102 |
<property name="Name" value="MetaCat"/> |
103 |
<property name="release" value="1.1.0"/>
|
|
103 |
<property name="release" value="1.2.0"/>
|
|
104 | 104 |
<property name="replication-path" |
105 | 105 |
value="/${context}/servlet/replication"/> |
106 | 106 |
<property name="servlet-path" value="/${context}/servlet/metacat"/> |
... | ... | |
113 | 113 |
<property name="eml-version" value="2.0.0beta6" /> |
114 | 114 |
<property name="eml-tag" value="RELEASE_EML_2_0_0_BETA_6_REV1" /> |
115 | 115 |
<property name="cvsroot" |
116 |
value=":ext:tao@cvs.ecoinformatics.org:/cvs" />
|
|
116 |
value=":ext:jones@cvs.ecoinformatics.org:/cvs" />
|
|
117 | 117 |
|
118 | 118 |
<property name="cpath" |
119 | 119 |
value="${xmlp}:${xalan}:${apis}:${jdbc}:${jsdk}:${srb}:${cos}:${morpho}"/> |
... | ... | |
210 | 210 |
</target> |
211 | 211 |
|
212 | 212 |
<target name="getdtd" depends="prepare"> |
213 |
<cvs cvsRoot="${cvsroot}" |
|
214 |
package="${eml-module}" |
|
215 |
tag="${eml-tag}" |
|
216 |
dest="${build.src}" /> |
|
217 |
<mkdir dir="lib/dtd" /> |
|
218 |
<copy todir="lib/dtd" filtering="yes"> |
|
219 |
<fileset dir="${build.src}/${eml-module}"> |
|
220 |
<include name="*.dtd"/> |
|
221 |
</fileset> |
|
222 |
<mapper type="glob" from="eml-*.dtd" to="eml-*-${eml-version}.dtd" /> |
|
223 |
</copy> |
|
224 |
<copy todir="lib/style" filtering="yes"> |
|
225 |
<fileset dir="${build.src}/${eml-module}/style"> |
|
226 |
<include name="*.xsl"/> |
|
227 |
</fileset> |
|
228 |
</copy> |
|
213 |
<echo>Enter CVS password: </echo> |
|
214 |
<cvs cvsRoot="${cvsroot}" |
|
215 |
package="${eml-module}" |
|
216 |
tag="${eml-tag}" |
|
217 |
dest="${build.src}" /> |
|
218 |
<mkdir dir="lib/dtd" /> |
|
219 |
<copy todir="lib/dtd" filtering="yes"> |
|
220 |
<fileset dir="${build.src}/${eml-module}"> |
|
221 |
<include name="*.dtd"/> |
|
222 |
</fileset> |
|
223 |
<mapper type="glob" from="eml-*.dtd" to="eml-*-${eml-version}.dtd" /> |
|
224 |
</copy> |
|
225 |
<copy todir="lib/style" filtering="yes"> |
|
226 |
<fileset dir="${build.src}/${eml-module}/style"> |
|
227 |
<include name="*.xsl"/> |
|
228 |
</fileset> |
|
229 |
</copy> |
|
229 | 230 |
</target> |
230 | 231 |
|
231 | 232 |
<target name="dtdsql" depends="prepare"> |
Also available in: Unified diff
Updated README and build.xml in preparation for a new release. Looks to me
as though the dist and distsrc targets are not working properly because the
dist target produces a distribution with source code, which it should not
do. Need to check into this.