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