Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Alignment API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
moex
Alignment API
Commits
c1f4220e
Commit
c1f4220e
authored
10 years ago
by
Jérôme Euzenat
Browse files
Options
Downloads
Patches
Plain Diff
- improved build entry for generating aserv.jar (from all jars in lib)
parent
15435992
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.xml
+22
-19
22 additions, 19 deletions
build.xml
html/relnotes.html
+1
-0
1 addition, 0 deletions
html/relnotes.html
with
23 additions
and
19 deletions
build.xml
+
22
−
19
View file @
c1f4220e
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
lint: compiles all sources with bug flags on
lint: compiles all sources with bug flags on
jar: archives compiled code
jar: archives compiled code
test: performs unit tests
test: performs unit tests
aserv: creates an empty jar file for launching servers
zip: creates a new zip file
zip: creates a new zip file
javadoc: generates documentation
javadoc: generates documentation
release: releases a new version
release: releases a new version
...
@@ -277,40 +278,42 @@
...
@@ -277,40 +278,42 @@
<delete
file=
"lib/ontowrap.jar"
/>
<delete
file=
"lib/ontowrap.jar"
/>
<delete
file=
"lib/alignsvc.jar"
/>
<delete
file=
"lib/alignsvc.jar"
/>
<delete
file=
"lib/procalign.jar"
/>
<delete
file=
"lib/procalign.jar"
/>
<delete
file=
"lib/aserv.jar"
/>
</target>
</target>
<!-- tested -->
<!-- tested -->
<!-- This generate a server jar with a class path containing all
libs in the lib directory. Useful for servers -->
<target
name=
"aserv"
depends=
"bind"
>
<target
name=
"aserv"
depends=
"bind"
>
<echo
message=
"Setting property..."
/>
<echo
message=
"Generating aserv jar..."
/>
<jar
jarfile=
"lib/aserv.jar"
>
<delete
file=
"lib/aserv.jar"
/>
<pathconvert
property=
"aserv.classpath"
pathsep=
" "
>
<map
from=
"${user.dir}/${libdir}/"
to=
""
/>
<path>
<fileset
dir=
"./lib"
>
<include
name=
"**/*.jar"
/>
<include
name=
"*.jar"
/>
<!-- several useless (and may be harmful) things at the moment -->
<!--exclude name="seals/seals-omt-client.jar" /-->
</fileset>
</path>
<!--flattenmapper /-->
</pathconvert>
<echo
message=
"path: ${aserv.classpath}"
/>
<jar
jarfile=
"aserv.jar"
>
<manifest>
<manifest>
<attribute
name=
"Built-Date"
value=
"${date}"
/>
<attribute
name=
"Built-Date"
value=
"${date}"
/>
<attribute
name=
"Main-Class"
value=
"fr.inrialpes.exmo.align.service.AlignmentService"
/>
<attribute
name=
"Main-Class"
value=
"fr.inrialpes.exmo.align.service.AlignmentService"
/>
<!-- usually each MANIFEST knows what it needs, add here -->
<!-- usually each MANIFEST knows what it needs, add here -->
<!-- semanticmapper-0.2.jar jwnl.jar sboa.jar TaxoMap.jar AROMA_aserv.jar oyster2.jar, semanticmapper-0.2.jar, sboalgorithms.jar -->
<!-- semanticmapper-0.2.jar jwnl.jar sboa.jar TaxoMap.jar AROMA_aserv.jar oyster2.jar, semanticmapper-0.2.jar, sboalgorithms.jar -->
<!-- others should be there naturally -->
<!-- others should be there naturally -->
<attribute
name=
"Class-Path"
value=
"
alignsvc.jar
"
/>
<attribute
name=
"Class-Path"
value=
"
${aserv.classpath}
"
/>
<attribute
name=
"Implementation-Title"
value=
"Alignment server custom launcher"
/>
<attribute
name=
"Implementation-Title"
value=
"Alignment server custom launcher"
/>
<attribute
name=
"Implementation-Version"
value=
"${version} (${svn.rev})"
/>
<attribute
name=
"Implementation-Version"
value=
"${version} (${svn.rev})"
/>
</manifest>
</manifest>
</jar>
</jar>
<move
file=
"aserv.jar"
tofile=
"lib/aserv.jar"
/>
</target>
</target>
<!-- JE: May also be done this way... bundles all the necessary jars...
<jar destfile="build/main/checksites.jar">
<fileset dir="build/main/classes"/>
<restrict>
<name name="**/*.class"/>
<archives>
<zips>
<fileset dir="lib/main" includes="**/*.jar"/>
</zips>
</archives>
</restrict>
<manifest>
<attribute name="Main-Class"
value="com.acme.checksites.Main"/>
</manifest>
</jar-->
<!-- tested -->
<!-- tested -->
<target
name=
"test"
depends=
"bind"
description=
"Unit test code"
>
<target
name=
"test"
depends=
"bind"
description=
"Unit test code"
>
...
...
This diff is collapsed.
Click to expand it.
html/relnotes.html
+
1
−
0
View file @
c1f4220e
...
@@ -76,6 +76,7 @@ with a warning:
...
@@ -76,6 +76,7 @@ with a warning:
<li><span
style=
"color: red;"
>
Deprecated
</span>
<tt>
BasicAlignment.removeAlignCell()
</tt>
, use
<tt>
remCell()
</tt>
instead (impl)
</tt>
<li><span
style=
"color: red;"
>
Deprecated
</span>
<tt>
BasicAlignment.removeAlignCell()
</tt>
, use
<tt>
remCell()
</tt>
instead (impl)
</tt>
<li><span
style=
"color: red;"
>
Moved
</span>
<tt>
QueryMediator
</tt>
, from
<tt>
service
</tt>
to
<tt>
queryprocessor
</tt>
(impl)
</tt>
<li><span
style=
"color: red;"
>
Moved
</span>
<tt>
QueryMediator
</tt>
, from
<tt>
service
</tt>
to
<tt>
queryprocessor
</tt>
(impl)
</tt>
<li><span
style=
"color: red;"
>
Changed
</span>
standard extension namespace to http://exmo.inrialpes.fr/align/ext/1.0/ (impl)
</tt>
<li><span
style=
"color: red;"
>
Changed
</span>
standard extension namespace to http://exmo.inrialpes.fr/align/ext/1.0/ (impl)
</tt>
<li><span
style=
"color: red;"
>
Changed
</span>
<tt>
-a
</tt>
command line argument takes a URI instead of a filename (add a "file:") (cli)
</li>
<li>
Fixed a bug in
<tt>
QueryMediator
</tt>
which doubled '#' (serv)
</li>
<li>
Fixed a bug in
<tt>
QueryMediator
</tt>
which doubled '#' (serv)
</li>
<li>
Fixed a few mistakes in
<tt>
SilkRendererVisitor
</tt>
(impl)
</li>
<li>
Fixed a few mistakes in
<tt>
SilkRendererVisitor
</tt>
(impl)
</li>
<li>
Fixed several bugs in
<tt>
GraphPatternRendererVisitor
</tt>
(impl)
</li>
<li>
Fixed several bugs in
<tt>
GraphPatternRendererVisitor
</tt>
(impl)
</li>
...
...
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