Switched to Gradle as build system

This commit is contained in:
Ziver Koc 2020-08-28 23:07:24 +02:00
parent da36be0862
commit a49cb55b93
34 changed files with 136 additions and 1021 deletions

81
build.gradle Normal file
View file

@ -0,0 +1,81 @@
plugins {
id 'java'
id 'application'
}
allprojects {
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
implementation 'se.koc:zutil:1.0.253'
testImplementation 'junit:junit:4.12'
testImplementation 'org.hamcrest:hamcrest-core:2.2'
}
sourceSets {
main {
java {
srcDirs 'src'
}
resources {
srcDir 'resource'
}
}
test {
java {
srcDirs 'test'
}
}
}
}
// ------------------------------------
// Hal core configuration
// ------------------------------------
dependencies {
implementation 'org.xerial:sqlite-jdbc:3.32.3.2'
}
sourceSets {
main {
java {
exclude 'se/hal/SpeechManager.java'
exclude 'se/hal/tts/**'
exclude 'se/hal/bot/**'
exclude 'se/hal/stt/**'
}
resources {
exclude 'bots/**'
exclude 'marytts/**'
exclude 'sphinx-models/**'
}
}
}
distributions {
main {
contents {
from 'hal.conf.example'
from 'hal-default.db'
from 'logging.properties'
}
}
}
// ------------------------------------
// Hal plugin common configuration
// ------------------------------------
subprojects {
dependencies {
implementation project(':')
}
}