Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vollt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sonia Zorba
vollt
Commits
d29809ed
Commit
d29809ed
authored
10 years ago
by
gmantele
Browse files
Options
Downloads
Patches
Plain Diff
[TAP] Update the ANT script (due to the replacement of Savot by STIL).
parent
5f00aa79
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildTAP.xml
+11
-6
11 additions, 6 deletions
buildTAP.xml
with
11 additions
and
6 deletions
buildTAP.xml
+
11
−
6
View file @
d29809ed
...
...
@@ -5,17 +5,19 @@
<property
name=
"version"
value=
"1.1b"
/>
<property
name=
"srcDir"
value=
"src"
/>
<property
name=
"libDir"
value=
"lib"
/>
<property
name=
"compileDir"
value=
"antBuild"
/>
<property
name=
"classesDir"
value=
"${compileDir}"
/>
<property
name=
"javadocDir"
value=
"javadoc/tap"
/>
<property
name=
"uploadUtilsJar"
value=
"lib/uploadUtils.jar"
/>
<property
name=
"cosJar"
value=
"${libDir}/cos.jar"
/>
<property
name=
"stilJar"
value=
"${libDir}/stil3.0-5.jar"
/>
<property
name=
"tapPath"
value=
"tap/**,adql/**,uws/**,cds/**"
/>
<property
name=
"jsonPath"
value=
"org/json/**"
/>
<property
name=
"
uploadUtil
sPath"
value=
"com/oreilly/servlet/**,
org/kxml2/**,org/xmlpull
/**"
/>
<property
name=
"
extLib
sPath"
value=
"com/oreilly/servlet/**,
nom/tam/**,org/apache/tools/bzip2/**,uk/ac/starlink
/**"
/>
<property
name=
"licensePath"
value=
"COPYING.LESSER.txt"
/>
<property
name=
"includesList"
value=
"${tapPath},${jsonPath},${
uploadUtil
sPath},${licensePath}"
/>
<property
name=
"includesList"
value=
"${tapPath},${jsonPath},${
extLib
sPath},${licensePath}"
/>
<property
name=
"jarDest"
value=
"."
/>
<property
name=
"libJarFile"
value=
"${jarDest}/tap_${version}.jar"
/>
...
...
@@ -30,7 +32,8 @@
</fail>
<path
id=
"tap.classpath"
>
<pathelement
location=
"${uploadUtilsJar}"
/>
<pathelement
location=
"${cosJar}"
/>
<pathelement
location=
"${stilJar}"
/>
<pathelement
location=
"${CATALINA}"
/>
<pathelement
location=
"${SERVLET-API}"
/>
</path>
...
...
@@ -62,14 +65,16 @@
<target
name=
"buildLib"
depends=
"compileLib"
description=
"After 'clean', build the library JAR (only classes)."
>
<echo>
Generate the library:
</echo>
<jar
basedir=
"${classesDir}"
destfile=
"${libJarFile}"
includes=
"${includesList}"
>
<zipfileset
src=
"${uploadUtilsJar}"
excludes=
"META-INF/*"
/>
<zipfileset
src=
"${cosJar}"
excludes=
"META-INF/*"
/>
<zipfileset
src=
"${stilJar}"
excludes=
"META-INF/*"
/>
</jar>
<delete
dir=
"${compileDir}"
failonerror=
"true"
/>
</target>
<target
name=
"buildLibAndSrc"
depends=
"buildLib"
description=
"After 'clean' and 'buildLib', build the sources JAR (only .java)."
>
<jar
compress=
"false"
baseDir=
"${srcDir}"
destfile=
"${srcJarFile}"
includes=
"${includesList}"
>
<fileset
file=
"${uploadUtilsJar}"
/>
<fileset
file=
"${cosJar}"
/>
<fileset
file=
"${stilJar}"
/>
</jar>
</target>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment