35 lines
1.1 KiB
Groovy
35 lines
1.1 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.5.4'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group = 'cn.idmesh'
|
|
version = '0.0.1-SNAPSHOT'
|
|
sourceCompatibility = '1.8'
|
|
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/jcenter' }
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:2.5.3"
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.3'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.3'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/jcenter' }
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
}
|
|
} |