sample-pack-java8/web-svc-demo/build.gradle

39 lines
1.3 KiB
Groovy
Raw Permalink Normal View History

2021-08-24 10:47:31 +08:00
plugins {
2021-08-24 11:43:58 +08:00
id 'org.springframework.boot' version '2.5.3'
2021-08-24 10:47:31 +08:00
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' }
2021-08-24 11:43:58 +08:00
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/spring' }
2021-08-24 10:47:31 +08:00
}
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' }
2021-08-24 11:43:58 +08:00
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/spring' }
2021-08-24 10:47:31 +08:00
}
}