Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
35a840a3
Commit
35a840a3
authored
Sep 04, 2014
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace mavenCentral() with jcenter() in docs
Fixes gh-1373
parent
1697174c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
build-tool-plugins.adoc
spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc
+1
-1
getting-started.adoc
spring-boot-docs/src/main/asciidoc/getting-started.adoc
+2
-2
howto.adoc
spring-boot-docs/src/main/asciidoc/howto.adoc
+1
-1
using-spring-boot.adoc
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+3
-3
No files found.
spring-boot-docs/src/main/asciidoc/build-tool-plugins.adoc
View file @
35a840a3
...
@@ -344,7 +344,7 @@ named ``providedRuntime'', e.g:
...
@@ -344,7 +344,7 @@ named ``providedRuntime'', e.g:
}
}
repositories
{
repositories
{
mavenCentral
()
jcenter
()
maven
{
url
"http://repo.spring.io/libs-snapshot"
}
maven
{
url
"http://repo.spring.io/libs-snapshot"
}
}
}
...
...
spring-boot-docs/src/main/asciidoc/getting-started.adoc
View file @
35a840a3
...
@@ -182,7 +182,7 @@ Here is a typical `build.gradle` file:
...
@@ -182,7 +182,7 @@ Here is a typical `build.gradle` file:
----
----
buildscript {
buildscript {
repositories {
repositories {
mavenCentral
()
jcenter
()
ifndef::release[]
ifndef::release[]
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/milestone" }
...
@@ -202,7 +202,7 @@ endif::release[]
...
@@ -202,7 +202,7 @@ endif::release[]
}
}
repositories {
repositories {
mavenCentral
()
jcenter
()
ifndef::release[]
ifndef::release[]
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/milestone" }
...
...
spring-boot-docs/src/main/asciidoc/howto.adoc
View file @
35a840a3
...
@@ -1466,7 +1466,7 @@ To configure IntelliJ correctly you can use the `idea` Gradle plugin:
...
@@ -1466,7 +1466,7 @@ To configure IntelliJ correctly you can use the `idea` Gradle plugin:
[source,groovy,indent=0,subs="verbatim,attributes"]
[source,groovy,indent=0,subs="verbatim,attributes"]
----
----
buildscript {
buildscript {
repositories {
mavenCentral
() }
repositories {
jcenter
() }
dependencies {
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}"
classpath "org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}"
classpath 'org.springframework:springloaded:1.2.0.RELEASE'
classpath 'org.springframework:springloaded:1.2.0.RELEASE'
...
...
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
View file @
35a840a3
...
@@ -140,7 +140,7 @@ Maven, there is no ``super parent'' to import to share some configuration.
...
@@ -140,7 +140,7 @@ Maven, there is no ``super parent'' to import to share some configuration.
----
----
apply
plugin
:
'java'
apply
plugin
:
'java'
repositories
{
mavenCentral
()
}
repositories
{
jcenter
()
}
dependencies
{
dependencies
{
compile
(
"org.springframework.boot:spring-boot-starter-web:{spring-boot-version}"
)
compile
(
"org.springframework.boot:spring-boot-starter-web:{spring-boot-version}"
)
}
}
...
@@ -155,7 +155,7 @@ for ``blessed'' dependencies>>:
...
@@ -155,7 +155,7 @@ for ``blessed'' dependencies>>:
[
source
,
groovy
,
indent
=
0
,
subs
=
"attributes"
]
[
source
,
groovy
,
indent
=
0
,
subs
=
"attributes"
]
----
----
buildscript
{
buildscript
{
repositories
{
mavenCentral
()
}
repositories
{
jcenter
()
}
dependencies
{
dependencies
{
classpath
(
"org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}"
)
classpath
(
"org.springframework.boot:spring-boot-gradle-plugin:{spring-boot-version}"
)
}
}
...
@@ -164,7 +164,7 @@ for ``blessed'' dependencies>>:
...
@@ -164,7 +164,7 @@ for ``blessed'' dependencies>>:
apply
plugin
:
'java'
apply
plugin
:
'java'
apply
plugin
:
'spring-boot'
apply
plugin
:
'spring-boot'
repositories
{
mavenCentral
()
}
repositories
{
jcenter
()
}
dependencies
{
dependencies
{
compile
(
"org.springframework.boot:spring-boot-starter-web"
)
compile
(
"org.springframework.boot:spring-boot-starter-web"
)
testCompile
(
"org.springframework.boot:spring-boot-starter-test"
)
testCompile
(
"org.springframework.boot:spring-boot-starter-test"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment