15 lines
421 B
Kotlin
15 lines
421 B
Kotlin
/*
|
|
* Spring-boot Examples
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
rootProject.name = "spring-boot-examples"
|
|
include(
|
|
"file-upload", "security", "security-with-jpa", "validation", "testing",
|
|
"mqtt", "websocket", "restful", "swing", "rest-doc",
|
|
"cache", "security-with-jwt", "exception", "i18n", "i18n-mustache","mvc",
|
|
"thymeleaf", "interceptor", "jpa"
|
|
)
|