Plugin Framework for Java (PF4J)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
REM
|
|
|
|
REM This script creates and run the pf4j demo.
|
|
|
|
REM
|
|
|
|
|
|
|
|
REM create artifacts using maven
|
|
|
|
call mvn clean package -DskipTests
|
|
|
|
|
|
|
|
REM create demo-dist folder
|
|
|
|
rmdir demo-dist /s /q
|
|
|
|
mkdir demo-dist
|
|
|
|
mkdir demo-dist\plugins
|
|
|
|
|
|
|
|
REM copy artifacts to demo-dist folder
|
|
|
|
xcopy demo\app\target\pf4j-demo-app-*.zip demo-dist /s /i
|
|
|
|
xcopy demo\plugins\plugin1\target\*plugin.jar demo-dist\plugins /s
|
|
|
|
xcopy demo\plugins\plugin2\target\*plugin.jar demo-dist\plugins /s
|
|
|
|
|
|
|
|
cd demo-dist
|
|
|
|
|
|
|
|
REM unzip app
|
|
|
|
unzip pf4j-demo-app-*.zip
|
|
|
|
rm pf4j-demo-app-*.zip
|
|
|
|
|
|
|
|
REM run demo
|
|
|
|
java -jar pf4j-demo-app-*-SNAPSHOT.jar
|
|
|
|
cd ..
|