This commit is contained in:
2022-07-17 05:35:55 +03:00
commit d8ee0d23f3
22 changed files with 729 additions and 0 deletions

19
dependencies.gradle Normal file
View File

@@ -0,0 +1,19 @@
//file:noinspection SpellCheckingInspection
def springboot_version = '2.6.6'
ext {
deps = [
lombok: 'org.projectlombok:lombok:1.18.20'
]
deps.logger = [
api: 'org.slf4j:slf4j-api:1.7.30'
]
deps.springboot = [
// https://plugins.gradle.org/plugin/org.springframework.boot
plugin: "org.springframework.boot:spring-boot-gradle-plugin:${springboot_version}",
web: "org.springframework.boot:spring-boot-starter-web:${springboot_version}",
config_processor: "org.springframework.boot:spring-boot-configuration-processor:${springboot_version}"
]
}