-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (34 loc) · 885 Bytes
/
build.gradle
File metadata and controls
42 lines (34 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
buildscript {
repositories {
maven { url "https://maven.aliyun.com/nexus/content/groups/public" }
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.7.1")
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'java-library'
group 'cn.daiwenhao'
version '1.0.2'
dependencyManagement {
imports {
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
}
}
repositories {
maven { url "https://maven.aliyun.com/nexus/content/groups/public" }
mavenCentral()
}
repositories {
mavenCentral()
}
configurations {
provided
all {
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
}
}
}