Files

59 lines
1.6 KiB
Groovy
Raw Permalink Normal View History

2025-11-23 21:41:11 +07:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.6'
2025-11-23 21:41:11 +07:00
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'ru.soune'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.security:spring-security-crypto:6.5.3'
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
2025-12-12 13:07:46 +07:00
implementation 'commons-validator:commons-validator:1.7'
implementation 'org.flywaydb:flyway-core:9.22.0'
2025-12-22 14:07:44 +07:00
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.0'
implementation 'tools.jackson.core:jackson-core:3.0.3'
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.0'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
2025-12-12 13:07:46 +07:00
annotationProcessor 'org.projectlombok:lombok'
2025-11-23 21:41:11 +07:00
compileOnly 'org.projectlombok:lombok'
2025-12-12 13:07:46 +07:00
2025-11-23 21:41:11 +07:00
developmentOnly 'org.springframework.boot:spring-boot-devtools'
2025-12-12 13:07:46 +07:00
2025-11-23 21:41:11 +07:00
runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
runtimeOnly 'com.mysql:mysql-connector-j'
runtimeOnly 'org.postgresql:postgresql'
2025-12-12 13:07:46 +07:00
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.mockito:mockito-core:5.3.1'
2025-11-23 21:41:11 +07:00
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
tasks.named('test') {
useJUnitPlatform()
}