forked from jdeschamps/EMU
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompileAndDeploy.sh
More file actions
43 lines (34 loc) · 1.63 KB
/
compileAndDeploy.sh
File metadata and controls
43 lines (34 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
exit_required=false
# get MM2 home
MM2_HOME=$1
if ! [ -d "$MM2_HOME" ]; then
echo "[$MM2_HOME] is not a directory."
exit_required=true
fi
# tests if mvn is installed
command -v mvn >/dev/null 2>&1 || { echo >&2 "Could not call mvn, are you sure Maven is installed?";}
# tests if the Micro-Manager jars are present and deploy them
MMJ="$MM2_HOME\plugins\Micro-Manager\MMJ_.jar"
MMAcqEngine="$MM2_HOME\plugins\Micro-Manager\MMAcqEngine.jar"
MMCoreJ="$MM2_HOME\plugins\Micro-Manager\MMCoreJ.jar"
MM2_PLUGINS_HOME="$MM2_HOME\mmplugins"
if [ "$exit_required" = false ]; then
if [ -f "$MMJ" ] && [ -f "$MMAcqEngine" ] && [ -f "$MMCoreJ" ]; then
# deploy MM2 jars
mvn install:install-file -Dfile="$MMJ" -DgroupId=org.micromanager -DartifactId=MMJ_ -Dversion=2.0.0-SNAPSHOT -Dpackaging=jar
mvn install:install-file -Dfile="$MMAcqEngine" -DgroupId=org.micromanager -DartifactId=MMAcqEngine -Dversion=2.0.0-SNAPSHOT -Dpackaging=jar
mvn install:install-file -Dfile="$MMCoreJ" -DgroupId=org.micromanager -DartifactId=MMCoreJ -Dversion=2.0.0-SNAPSHOT -Dpackaging=jar
# compile EMU
mvn clean package shade:shade -Dmaven.test.skip=true
# then deploy it to be used for plugins
mvn install:install-file -Dfile="target\EMU-1.0-SNAPSHOT.jar" -DgroupId=de.embl.rieslab -DartifactId=EMU -Dversion=1.0-SNAPSHOT -Dpackaging=jar
# finally copy the jar to MM
cp "target\EMU-1.0-SNAPSHOT.jar" "$MM2_PLUGINS_HOME\EMU-1.0.jar"
# test if the EMU folder exist, otherwise create it
MM2_EMU="$MM2_HOME\EMU"
mkdir -p "$MM2_EMU"
else
echo "Could not find MMJ_.jar, MMAcqEngine.jar or MMCoreJ.jar. Did you input the correct directory?"
fi
fi