39 lines
1.1 KiB
Groovy
39 lines
1.1 KiB
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.27'
|
|
implementation 'org.projectlombok:lombok:1.18.20'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
|
implementation 'org.yaml:snakeyaml:1.33'
|
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
|
implementation 'com.alibaba.fastjson2:fastjson2:2.0.22'
|
|
|
|
|
|
//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'
|
|
implementation 'cn.hutool:hutool-all:5.8.11'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|