mirror of
https://gitee.com/BDWare/custom-plugin
synced 2026-02-14 16:49:27 +00:00
25 lines
406 B
Groovy
25 lines
406 B
Groovy
|
|
plugins {
|
||
|
|
id 'java'
|
||
|
|
}
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
|
||
|
|
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
|
||
|
|
}
|
||
|
|
}
|