blob: 029779d640213171711af9f05e7815e9ab8bf49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
apply plugin:'application'
mainClassName = 'ro.fortsoft.pf4j.demo.Boot'
dependencies {
compile project(':api')
compile 'ro.fortsoft.pf4j:pf4j:1.1.1'
compile 'org.apache.commons:commons-lang3:3.0'
testCompile group: 'junit', name: 'junit', version: '4.+'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
}
jar {
baseName = 'Plugin Demo'
version = '0.1.0'
}
|