aboutsummaryrefslogtreecommitdiffstats
path: root/demo_gradle/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'demo_gradle/app/build.gradle')
-rw-r--r--demo_gradle/app/build.gradle18
1 files changed, 9 insertions, 9 deletions
diff --git a/demo_gradle/app/build.gradle b/demo_gradle/app/build.gradle
index 2478937..cd473b6 100644
--- a/demo_gradle/app/build.gradle
+++ b/demo_gradle/app/build.gradle
@@ -1,16 +1,16 @@
-apply plugin:'application'
+apply plugin: 'application'
-mainClassName = 'ro.fortsoft.pf4j.demo.Boot'
+mainClassName = 'org.pf4j.demo.Boot'
dependencies {
- compile project(':api')
- compile 'ro.fortsoft.pf4j:pf4j:1.3.0'
- compile 'org.apache.commons:commons-lang3:3.5'
- testCompile group: 'junit', name: 'junit', version: '4.+'
- compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
+ compile project(':api')
+ compile 'org.pf4j:pf4j:1.4.0-SNAPSHOT'
+ compile 'org.apache.commons:commons-lang3:3.5'
+ testCompile group: 'junit', name: 'junit', version: '4.+'
+ compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
}
jar {
- baseName = 'Plugin Demo'
- version = '0.1.0'
+ baseName = 'Plugin Demo'
+ version = '0.1.0'
}