mirror of
https://gitee.com/BDWare/custom-plugin
synced 2025-01-25 01:04:18 +00:00
21 lines
369 B
Groovy
21 lines
369 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|