optimize build.gradle

This commit is contained in:
CaiHQ
2021-12-21 17:48:31 +08:00
parent c3f1407b6f
commit 7d04d48f50
5 changed files with 36 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'java-library'
}
sourceSets {
@@ -28,7 +29,9 @@ repositories {
}
dependencies {
implementation project(":common")
api project(":common")
api 'io.prometheus:simpleclient:0.12.0'
api 'org.knowhowlab.osgi:sigar:1.6.5_01'
api fileTree(dir: 'libs', include: '*.jar')
testImplementation 'junit:junit:4.13.2'
}