48 lines
No EOL
789 B
Groovy
48 lines
No EOL
789 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'se.koc:zutil:1.0.264'
|
|
implementation 'org.xerial:sqlite-jdbc:3.32.3.2'
|
|
implementation 'com.github.oshi:oshi-core:5.2.5'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.hamcrest:hamcrest-core:2.2'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs 'src'
|
|
}
|
|
resources {
|
|
exclude '**/*.java'
|
|
srcDirs = [
|
|
'resources',
|
|
'src',
|
|
]
|
|
}
|
|
}
|
|
test {
|
|
java {
|
|
srcDirs 'test'
|
|
}
|
|
}
|
|
}
|
|
|
|
distributions {
|
|
main {
|
|
contents {
|
|
from 'webadmin-default.db'
|
|
}
|
|
}
|
|
} |