blob: c349034e5a8ab4ef81694b4abf5918def66cf0dc (
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:0.4'
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'
}
|