diff options
author | Sebastian Schuberth <sschuberth@users.noreply.github.com> | 2024-06-23 21:59:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-23 22:59:16 +0300 |
commit | acf0a9f26190c49f508c5b187e9f2c671874d90d (patch) | |
tree | 51bb14d9e752983b752c1da97ec8910f5160d0c7 /demo/gradle/plugins/plugin2/build.gradle | |
parent | 1f303dafb976fb9121da871973a293d09fdee755 (diff) | |
download | pf4j-acf0a9f26190c49f508c5b187e9f2c671874d90d.tar.gz pf4j-acf0a9f26190c49f508c5b187e9f2c671874d90d.zip |
Consolidate demo projects in the "demo" directory (#584)
Diffstat (limited to 'demo/gradle/plugins/plugin2/build.gradle')
-rw-r--r-- | demo/gradle/plugins/plugin2/build.gradle | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/demo/gradle/plugins/plugin2/build.gradle b/demo/gradle/plugins/plugin2/build.gradle new file mode 100644 index 0000000..78eef47 --- /dev/null +++ b/demo/gradle/plugins/plugin2/build.gradle @@ -0,0 +1,11 @@ +dependencies { + // compileOnly important!!! We do not want to put the api into the zip file since the main program has it already! + compileOnly project(':api') + compileOnly(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}") { + exclude group: "org.slf4j" + } + annotationProcessor(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}") + implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.5' + implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25' + testImplementation group: 'junit', name: 'junit', version: '4.+' +} |