35 lines
1006 B
Groovy
35 lines
1006 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.5.0-SNAPSHOT'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'cn.rainss'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.freemarker:freemarker:2.3.31'
|
|
implementation 'org.postgresql:postgresql:42.2.19'
|
|
implementation 'org.projectlombok:lombok:1.18.20'
|
|
implementation 'org.yaml:snakeyaml:1.28'
|
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
|
|
|
//mybatis plus gen
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
implementation 'com.baomidou:mybatis-plus-boot-starter:3.4.2'
|
|
implementation 'com.baomidou:mybatis-plus-generator:3.4.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|