mirror of https://github.com/pf4j/pf4j.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
585 B
12 lines
585 B
10 years ago
|
dependencies {
|
||
7 years ago
|
// 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"
|
||
|
}
|
||
5 years ago
|
annotationProcessor(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}")
|
||
5 months ago
|
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.+'
|
||
9 years ago
|
}
|