SHA256
30 lines
545 B
Groovy
30 lines
545 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'shine'
|
|
version = '1.0.0'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.postgresql:postgresql:42.7.7'
|
|
|
|
implementation "org.slf4j:slf4j-api:2.0.16" // вызов логгера
|
|
|
|
implementation project(':shine-server-config') // модуль с настройками
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|