Files

55 lines
1.6 KiB
Groovy
Raw Permalink Normal View History

2026-03-30 21:43:09 +07:00
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.6'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'ru.soune.nocopy'
version = '0.0.1-SNAPSHOT'
description = 'admin-panel'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
2026-05-08 16:54:51 +07:00
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2023.0.0"
}
}
2026-03-30 21:43:09 +07:00
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
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'
2026-04-08 11:17:08 +07:00
implementation 'org.springframework.security:spring-security-crypto:6.5.3'
implementation("io.jsonwebtoken:jjwt:0.13.0")
2026-03-30 21:43:09 +07:00
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'org.postgresql:postgresql'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa-test'
testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2026-05-08 16:54:51 +07:00
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign:4.1.0'
2026-06-05 22:06:28 +07:00
//security
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation("io.jsonwebtoken:jjwt:0.13.0")
2026-03-30 21:43:09 +07:00
}