2026-06-04 14:10:01 +07:00
|
|
|
plugins {
|
|
|
|
|
id 'java'
|
2026-06-04 17:58:54 +07:00
|
|
|
id 'org.springframework.boot' version '3.5.6'
|
2026-06-04 14:10:01 +07:00
|
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
group = 'ru.no-copy'
|
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
2026-06-04 17:58:54 +07:00
|
|
|
description = 'monitoring'
|
2026-06-04 14:10:01 +07:00
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
|
|
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-04 17:58:54 +07:00
|
|
|
configurations {
|
|
|
|
|
compileOnly {
|
|
|
|
|
extendsFrom annotationProcessor
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-04 14:10:01 +07:00
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
2026-06-04 17:58:54 +07:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
|
|
|
implementation 'org.springframework.kafka:spring-kafka'
|
2026-06-04 14:10:01 +07:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
2026-06-04 17:58:54 +07:00
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
2026-06-04 14:10:01 +07:00
|
|
|
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
|
|
|
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
|
|
|
runtimeOnly 'org.postgresql:postgresql'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-actuator-test'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa-test'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-security-test'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-thymeleaf-test'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-validation-test'
|
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
2026-06-11 11:07:34 +07:00
|
|
|
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.0'
|
|
|
|
|
implementation 'tools.jackson.core:jackson-core:3.0.3'
|
|
|
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.2'
|
|
|
|
|
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.12.0'
|
|
|
|
|
|
2026-06-04 14:10:01 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|