mirror of
https://gitee.com/BDWare/custom-plugin
synced 2025-01-09 17:34:18 +00:00
23 lines
403 B
Groovy
23 lines
403 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
apply from: '../spotless.gradle'
|
|
|
|
dependencies {
|
|
implementation project(":consistency-sdk")
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
jar {
|
|
String libs = ''
|
|
configurations.runtimeClasspath.each {
|
|
libs = libs + " libs/" + it.name
|
|
}
|
|
|
|
manifest {
|
|
attributes 'Manifest-Version': archiveVersion
|
|
attributes 'Class-Path': libs
|
|
}
|
|
} |