mirror of
https://gitee.com/BDWare/custom-plugin
synced 2025-01-10 01:44:18 +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
|
||
|
}
|
||
|
}
|