File tree Expand file tree Collapse file tree 5 files changed +35
-7
lines changed Expand file tree Collapse file tree 5 files changed +35
-7
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ sourceCompatibility = '1.8'
8
8
9
9
ext[' spring-graphql.version' ] = version
10
10
11
+ repositories {
12
+ mavenCentral()
13
+ maven { url ' https://repo.spring.io/milestone' }
14
+ maven { url ' https://repo.spring.io/snapshot' }
15
+ }
16
+
11
17
dependencies {
12
18
implementation ' org.springframework.boot:spring-boot-starter-graphql'
13
19
implementation ' org.springframework.boot:spring-boot-starter-webflux'
@@ -20,4 +26,4 @@ dependencies {
20
26
}
21
27
test {
22
28
useJUnitPlatform()
23
- }
29
+ }
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ sourceCompatibility = '1.8'
8
8
9
9
ext[' spring-graphql.version' ] = version
10
10
11
+ repositories {
12
+ mavenCentral()
13
+ maven { url ' https://repo.spring.io/milestone' }
14
+ maven { url ' https://repo.spring.io/snapshot' }
15
+ }
16
+
11
17
dependencies {
12
18
implementation ' org.springframework.boot:spring-boot-starter-graphql'
13
19
implementation ' org.springframework.boot:spring-boot-starter-webflux'
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ sourceCompatibility = '1.8'
8
8
9
9
ext[' spring-graphql.version' ] = version
10
10
11
+ repositories {
12
+ mavenCentral()
13
+ maven { url ' https://repo.spring.io/milestone' }
14
+ maven { url ' https://repo.spring.io/snapshot' }
15
+ }
16
+
11
17
dependencies {
12
18
implementation ' org.springframework.boot:spring-boot-starter-graphql'
13
19
implementation ' org.springframework.boot:spring-boot-starter-web'
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ sourceCompatibility = '1.8'
8
8
9
9
ext[' spring-graphql.version' ] = version
10
10
11
+ repositories {
12
+ mavenCentral()
13
+ maven { url ' https://repo.spring.io/milestone' }
14
+ maven { url ' https://repo.spring.io/snapshot' }
15
+ }
16
+
11
17
dependencies {
12
18
implementation ' org.springframework.boot:spring-boot-starter-graphql'
13
19
implementation ' org.springframework.boot:spring-boot-starter-web'
Original file line number Diff line number Diff line change 1
1
pluginManagement {
2
- repositories {
3
- maven { url ' https://repo.spring.io/release' }
4
- maven { url ' https://repo.spring.io/milestone' }
5
- maven { url ' https://repo.spring.io/snapshot' }
6
- gradlePluginPortal()
7
- }
2
+ repositories {
3
+ mavenCentral()
4
+ gradlePluginPortal()
5
+ maven {
6
+ url ' https://repo.spring.io/release'
7
+ }
8
+ if (version. endsWith(' -SNAPSHOT' )) {
9
+ maven { url " https://repo.spring.io/snapshot" }
10
+ }
11
+ }
8
12
resolutionStrategy {
9
13
eachPlugin {
10
14
if (requested. id. id == ' org.springframework.boot' ) {
You can’t perform that action at this time.
0 commit comments