aboutsummaryrefslogtreecommitdiffstats
path: root/demo_gradle/plugins/plugin1/build.gradle
blob: f3f00a5691b67618b80d093ccefb3d84f2447509 (plain)
1
2
3
4
5
6
7
8
9
10
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}")
  compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
  testCompile group: 'junit', name: 'junit', version: '4.+'
}