40 lines
1.3 KiB
Groovy
40 lines
1.3 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.5.6'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.dbnt'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.4'
|
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.5.3'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
|
|
// implementation 'io.jsonwebtoken:jjwt:0.9.1'
|
|
|
|
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.4'
|
|
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16'
|
|
|
|
implementation 'com.github.ulisesbocchio:jasypt-spring-boot-starter:3.0.4'
|
|
|
|
} |