Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions build-coatjava.sh
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,10 @@ cp -r libexec $prefix_dir/
which python3 >& /dev/null && python=python3 || python=python
$python etc/bankdefs/util/bankSplit.py $prefix_dir/etc/bankdefs/hipo4 || exit 1

# use maven to copy a CLARA jar to a separate directory:
mvn org.apache.maven.plugins:maven-dependency-plugin:3.10.0:copy \
-Dartifact=org.jlab.coda:jclara:4.3:jar -DoutputDirectory=$prefix_dir/lib/utils -DstripVersion=false

# build (and test)
unset CLAS12DIR
if $runUnitTests; then
Expand All @@ -325,7 +329,6 @@ if $runSpotBugs; then
echo "spotbugs spotted no bugs!"
fi


################################################################################
# install
################################################################################
Expand Down Expand Up @@ -356,10 +359,6 @@ for pom in $(find common-tools -name pom.xml); do
fi
done

# install CLARA jar in separate directory:
mvn org.apache.maven.plugins:maven-dependency-plugin:3.10.0:copy \
-Dartifact=org.jlab.coda:jclara:4.3:jar -DoutputDirectory=$prefix_dir/lib/utils -DstripVersion=false

echo "installed coatjava to: $prefix_dir"

# install clara
Expand Down
Loading