您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
35 行
826 B
35 行
826 B
4 年前
|
plugins {
|
||
|
id 'org.springframework.boot' version '2.3.3.RELEASE'
|
||
|
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'com.ceis'
|
||
|
version = '0.0.1-SNAPSHOT'
|
||
|
sourceCompatibility = '1.8'
|
||
|
|
||
|
configurations {
|
||
|
compileOnly {
|
||
|
extendsFrom annotationProcessor
|
||
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
||
|
compileOnly 'org.projectlombok:lombok'
|
||
|
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
||
|
runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
|
||
|
runtimeOnly 'mysql:mysql-connector-java'
|
||
|
annotationProcessor 'org.projectlombok:lombok'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|