SHA256
27 lines
456 B
Groovy
27 lines
456 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'shine'
|
|
version = '1.0.0'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.xerial:sqlite-jdbc:3.47.0.0'
|
|
implementation project(':shine-server-config') // модуль с настройками
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|