diff options
author | Decebal Suiu <decebal.suiu@gmail.com> | 2017-09-20 16:55:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-20 16:55:30 +0200 |
commit | 5916ee64d9c05a4f085f6f6562ed383ff3203e4a (patch) | |
tree | 0255541afe778984d2becf450ecbb90d97e595d7 /demo_gradle/build.gradle | |
parent | b8cd3af90f8149e5003ea1db395d67b0fa8f7066 (diff) | |
download | pf4j-5916ee64d9c05a4f085f6f6562ed383ff3203e4a.tar.gz pf4j-5916ee64d9c05a4f085f6f6562ed383ff3203e4a.zip |
Change root package from ro.fortsoft.pf4j to org.pf4j (#168)
Diffstat (limited to 'demo_gradle/build.gradle')
-rw-r--r-- | demo_gradle/build.gradle | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/demo_gradle/build.gradle b/demo_gradle/build.gradle index e38a949..d86746d 100644 --- a/demo_gradle/build.gradle +++ b/demo_gradle/build.gradle @@ -1,10 +1,10 @@ subprojects { - apply plugin: 'java' + apply plugin: 'java' - repositories { - mavenLocal() - mavenCentral() - } + repositories { + mavenLocal() + mavenCentral() + } } task copyPlugins() { @@ -14,7 +14,7 @@ task copyPlugins() { subprojects.each { p -> if (p.path.contains(":plugins/")) { - System.out.println("Copying plugin from " + p.path); + System.out.println("Copying plugin from " + p.path); copy { from p.projectDir.toString() + '/build/libs' into 'app/plugins' |