Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaX
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
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
pdn-certic
MaX
Commits
b6234e6d
Commit
b6234e6d
authored
10 months ago
by
Jerome Chauveau
Browse files
Options
Downloads
Patches
Plain Diff
build fix : fop + saxon dl
parent
b04634df
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/build.sh
+12
-5
12 additions, 5 deletions
tools/build.sh
with
12 additions
and
5 deletions
tools/build.sh
+
12
−
5
View file @
b6234e6d
...
...
@@ -2,6 +2,9 @@
#build max release ' zip
BASEX_URL
=
https://files.basex.org/releases/10.7/BaseX107.zip
SAXON_HE_URL
=
"https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/10.8/Saxon-HE-10.8.jar"
FOP_URL
=
"https://files.basex.org/modules/org/basex/modules/fop/FOP.jar"
DIRECTORY
=
$(
cd
`
dirname
$0
`
&&
pwd
)
echo
"Working directory = "
$DIRECTORY
...
...
@@ -79,17 +82,21 @@ unzip $basex_zip
rm
-rf
$basex_zip
mv
basex
$RELEASE_DIR
#dl and copy saxon & fop jars in basex lib dir
echo
'dl and copy saxon & fop jars in basex lib dir'
cd
$DIRECTORY
curl
--silent
-k
-O
$SAXON_HE_URL
curl
--silent
-k
-O
$FOP_URL
mv
Saxon-HE-10.8.jar
$RELEASE_DIR
/basex/lib/custom/
mv
FOP.jar
$RELEASE_DIR
/basex/lib/custom/
#create symlink to max web app in basex webapp
echo
'create symlink to max web app in basex webapp'
cd
$RELEASE_DIR
/basex/webapp
ln
-s
../../max max
#copy saxon & fop jars in basex lib dir
echo
'copy saxon & fop jars in basex lib dir'
cd
$DIRECTORY
cp
../basex/lib/custom/Saxon-HE-10.8.jar
$RELEASE_DIR
/basex/lib/custom/
cp
../basex/lib/custom/FOP.jar
$RELEASE_DIR
/basex/lib/custom/
# generate Makefile from dev one
echo
'TOOLS_DIR=max/tools/'
>
Makefile
...
...
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