53 lines
1.4 KiB
Groovy
53 lines
1.4 KiB
Groovy
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'groovy'
|
|
|
|
dependencies {
|
|
testImplementation 'org.spockframework:spock-core:2.0-M5-groovy-3.0'
|
|
testImplementation "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
testImplementation project(':shared')
|
|
|
|
implementation project(':shared')
|
|
implementation(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}") {
|
|
exclude(group: "org.slf4j")
|
|
}
|
|
annotationProcessor(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}")
|
|
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Plugin-Id' : "${pluginId}",
|
|
'Plugin-Class' : "${pluginClass}",
|
|
'Plugin-Version' : "${pluginVersion}",
|
|
'Plugin-Provider' : "${pluginProvider}",
|
|
'Plugin-Description': "${pluginDescription}"
|
|
)
|
|
}
|
|
}
|
|
|
|
task copyJar(type: Copy, dependsOn:[jar]) {
|
|
from jar // here it automatically reads jar file produced from jar task
|
|
into "../output/"
|
|
}
|
|
|
|
tasks.assemble.dependsOn {
|
|
copyJar
|
|
}
|
|
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
task customCleanUp(type:Delete) {
|
|
delete "output"
|
|
//delete files("${buildDir}/test/*.jar")
|
|
}
|
|
|
|
tasks.clean.dependsOn(tasks.customCleanUp) |