File tree Expand file tree Collapse file tree 6 files changed +65
-35
lines changed
spring-boot-sample-actuator
spring-boot-sample-simple
spring-boot-sample-web-static
spring-boot-sample-web-ui Expand file tree Collapse file tree 6 files changed +65
-35
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,12 @@ buildscript {
3
3
springBootVersion = ' 1.0.0.BUILD-SNAPSHOT'
4
4
}
5
5
repositories {
6
+ // NOTE: You should declare only repositories that you need here
6
7
mavenLocal()
7
- maven { url " http://repo.spring.io/libs-snapshot" }
8
+ mavenCentral()
9
+ maven { url " http://repo.spring.io/release" }
10
+ maven { url " http://repo.spring.io/milestone" }
11
+ maven { url " http://repo.spring.io/snapshot" }
8
12
}
9
13
dependencies {
10
14
classpath(" org.springframework.boot:spring-boot-gradle-plugin:${ springBootVersion} " )
22
26
}
23
27
24
28
repositories {
29
+ // NOTE: You should declare only repositories that you need here
25
30
mavenLocal()
26
31
mavenCentral()
27
- maven { url " http://repo.spring.io/libs-snapshot" }
32
+ maven { url " http://repo.spring.io/release" }
33
+ maven { url " http://repo.spring.io/milestone" }
34
+ maven { url " http://repo.spring.io/snapshot" }
28
35
}
29
36
30
37
dependencies {
Original file line number Diff line number Diff line change 1
1
<ivy-module version =" 2.0" >
2
- <info organisation =" org.springframework.boot" module =" spring-boot-sample-actuator" />
3
- <configurations >
4
- <conf name =" loader" description =" helpers added to final jar" />
5
- <conf name =" compile" description =" everything needed to compile this module" />
6
- <conf name =" runtime" extends =" compile" description =" everything needed to run this module" />
7
- </configurations >
8
- <dependencies >
9
- <dependency org =" org.springframework.boot" name =" spring-boot-loader" rev =" 1.0.0.BUILD-SNAPSHOT" conf =" loader->default" />
10
- <dependency org =" org.springframework.boot" name =" spring-boot-starter-web" rev =" 1.0.0.BUILD-SNAPSHOT" conf =" compile" />
11
- <dependency org =" org.springframework.boot" name =" spring-boot-starter-actuator" rev =" 1.0.0.BUILD-SNAPSHOT" conf =" runtime" />
12
- </dependencies >
13
- </ivy-module >
2
+ <info organisation =" org.springframework.boot" module =" spring-boot-sample-actuator" />
3
+ <configurations >
4
+ <conf name =" loader" description =" helpers added to final jar" />
5
+ <conf name =" compile" description =" everything needed to compile this module" />
6
+ <conf name =" runtime" extends =" compile" description =" everything needed to run this module" />
7
+ </configurations >
8
+ <dependencies >
9
+ <dependency org =" org.springframework.boot" name =" spring-boot-loader" rev =" 1.0.0.BUILD-SNAPSHOT" conf =" loader->default" />
10
+ <dependency org =" org.springframework.boot" name =" spring-boot-starter-web" rev =" 1.0.0.BUILD-SNAPSHOT" conf =" compile" />
11
+ <dependency org =" org.springframework.boot" name =" spring-boot-starter-actuator" rev =" 1.0.0.BUILD-SNAPSHOT" conf =" runtime" />
12
+ </dependencies >
13
+ </ivy-module >
Original file line number Diff line number Diff line change 1
1
<ivysettings >
2
- <settings defaultResolver =" chain" />
3
- <resolvers >
4
- <chain name =" chain" >
5
- < filesystem name = " local " local = " true " m2compatible = " true " >
6
- < artifact
7
- pattern =" ${user.home}/.m2/[organisation]/[module]/[revision]/[module]-[revision].[ext]" />
8
- <ivy
9
- pattern = " ${user.home}/.m2/[organisation]/[module]/[revision]/[module]-[revision].pom " / >
10
- </ filesystem >
11
- <ibiblio name =" ibiblio " m2compatible =" true" />
12
- <ibiblio name =" spring-milestones" m2compatible =" true" root =" http://repo.spring.io/libs- milestone" />
13
- <ibiblio name =" spring-snapshots" m2compatible =" true" root =" http://repo.spring.io/libs- snapshot" />
14
- </chain >
15
- </resolvers >
16
- </ivysettings >
2
+ <settings defaultResolver =" chain" />
3
+ <resolvers >
4
+ <chain name =" chain" >
5
+ <!-- NOTE: You should declare only repositories that you need here -- >
6
+ < filesystem name = " local " local = " true " m2compatible = " true " >
7
+ < artifact pattern =" ${user.home}/.m2/[organisation]/[module]/[revision]/[module]-[revision].[ext]" />
8
+ <ivy pattern = " ${user.home}/.m2/[organisation]/[module]/[revision]/[module]-[revision].pom " />
9
+ </ filesystem >
10
+ < ibiblio name = " ibiblio " m2compatible = " true " / >
11
+ <ibiblio name =" spring-milestones " m2compatible =" true" root = " http://repo.spring.io/release " />
12
+ <ibiblio name =" spring-milestones" m2compatible =" true" root =" http://repo.spring.io/milestone" />
13
+ <ibiblio name =" spring-snapshots" m2compatible =" true" root =" http://repo.spring.io/snapshot" />
14
+ </chain >
15
+ </resolvers >
16
+ </ivysettings >
Original file line number Diff line number Diff line change @@ -3,8 +3,12 @@ buildscript {
3
3
springBootVersion = ' 1.0.0.BUILD-SNAPSHOT'
4
4
}
5
5
repositories {
6
+ // NOTE: You should declare only repositories that you need here
6
7
mavenLocal()
7
- maven { url " http://repo.spring.io/libs-snapshot" }
8
+ mavenCentral()
9
+ maven { url " http://repo.spring.io/release" }
10
+ maven { url " http://repo.spring.io/milestone" }
11
+ maven { url " http://repo.spring.io/snapshot" }
8
12
}
9
13
dependencies {
10
14
classpath(" org.springframework.boot:spring-boot-gradle-plugin:${ springBootVersion} " )
22
26
}
23
27
24
28
repositories {
29
+ // NOTE: You should declare only repositories that you need here
25
30
mavenLocal()
26
31
mavenCentral()
27
- maven { url " http://repo.spring.io/libs-snapshot" }
32
+ maven { url " http://repo.spring.io/release" }
33
+ maven { url " http://repo.spring.io/milestone" }
34
+ maven { url " http://repo.spring.io/snapshot" }
28
35
}
29
36
30
37
dependencies {
Original file line number Diff line number Diff line change @@ -3,8 +3,12 @@ buildscript {
3
3
springBootVersion = ' 1.0.0.BUILD-SNAPSHOT'
4
4
}
5
5
repositories {
6
+ // NOTE: You should declare only repositories that you need here
6
7
mavenLocal()
7
- maven { url " http://repo.spring.io/libs-snapshot" }
8
+ mavenCentral()
9
+ maven { url " http://repo.spring.io/release" }
10
+ maven { url " http://repo.spring.io/milestone" }
11
+ maven { url " http://repo.spring.io/snapshot" }
8
12
}
9
13
dependencies {
10
14
classpath(" org.springframework.boot:spring-boot-gradle-plugin:${ springBootVersion} " )
26
30
}
27
31
28
32
repositories {
33
+ // NOTE: You should declare only repositories that you need here
34
+ mavenLocal()
29
35
mavenCentral()
30
- maven { url " http://repo.spring.io/libs-snapshot" }
36
+ maven { url " http://repo.spring.io/release" }
37
+ maven { url " http://repo.spring.io/milestone" }
38
+ maven { url " http://repo.spring.io/snapshot" }
31
39
}
32
40
33
41
configurations {
Original file line number Diff line number Diff line change @@ -4,8 +4,12 @@ buildscript {
4
4
springLoadedVersion = ' 1.1.5.RELEASE'
5
5
}
6
6
repositories {
7
+ // NOTE: You should declare only repositories that you need here
7
8
mavenLocal()
8
- maven { url " http://repo.spring.io/libs-snapshot" }
9
+ mavenCentral()
10
+ maven { url " http://repo.spring.io/release" }
11
+ maven { url " http://repo.spring.io/milestone" }
12
+ maven { url " http://repo.spring.io/snapshot" }
9
13
}
10
14
dependencies {
11
15
classpath(" org.springframework.boot:spring-boot-gradle-plugin:${ springBootVersion} " )
27
31
}
28
32
29
33
repositories {
34
+ // NOTE: You should declare only repositories that you need here
35
+ mavenLocal()
30
36
mavenCentral()
31
- maven { url " http://repo.spring.io/libs-snapshot" }
37
+ maven { url " http://repo.spring.io/release" }
38
+ maven { url " http://repo.spring.io/milestone" }
39
+ maven { url " http://repo.spring.io/snapshot" }
32
40
}
33
41
34
42
dependencies {
You can’t perform that action at this time.
0 commit comments