-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrun-demo.sh
More file actions
executable file
·31 lines (23 loc) · 737 Bytes
/
Copy pathrun-demo.sh
File metadata and controls
executable file
·31 lines (23 loc) · 737 Bytes
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
#!/bin/sh
#
# This script creates and run the pf4j demo.
#
# create artifacts using maven
mvn clean package -DskipTests
# create demo-dist folder
rm -fr demo-dist
mkdir -p demo-dist/plugins
# copy artifacts to demo-dist folder
cp demo/app/target/pf4j-demo-*.zip demo-dist/
cp demo/plugins/plugin1/target/pf4j-demo-plugin1-*-all.jar demo-dist/plugins/
cp demo/plugins/plugin2/target/pf4j-demo-plugin2-*-all.jar demo-dist/plugins/
cp demo/plugins/enabled.txt demo-dist/plugins/
cp demo/plugins/disabled.txt demo-dist/plugins/
cd demo-dist
# unzip app
jar xf pf4j-demo-app-*.zip
rm pf4j-demo-app-*.zip
# run demo
mv pf4j-demo-app-*-SNAPSHOT.jar pf4j-demo.jar
java -Xbootclasspath/a:/opt/jdk1.8/lib/tools.jar -jar pf4j-demo.jar
cd -