2021-08-05

This commit is contained in:
2021-08-05 13:33:52 +09:00
parent d45139dd58
commit 0f4d342354
32 changed files with 743 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
/*
* Spring-boot Examples
*
* Copyright (c) 2021. Elex. All Rights Reserved.
* https://www.elex-project.com/
*/
plugins {
id("elex-spring-boot")
id("org.springframework.boot") version "2.5.3"
id("io.spring.dependency-management") version "1.0.11.RELEASE"
}
dependencies {
implementation ("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-mustache")
implementation("org.springframework.boot:spring-boot-starter-websocket")
compileOnly ("org.projectlombok:lombok")
developmentOnly ("org.springframework.boot:spring-boot-devtools")
annotationProcessor ("org.projectlombok:lombok")
testImplementation ("org.springframework.boot:spring-boot-starter-test")
}