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
f2a1840c
Commit
f2a1840c
authored
Feb 13, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #19953 from dreis2211
* gh-19953: Upgrade to Asciidoctor Gradle JVM 3.0.0 Closes gh-19953
parents
db1c9f40
23bf9481
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
build.gradle
buildSrc/build.gradle
+2
-1
SingleConfigurationTableEntry.java
...ild/context/properties/SingleConfigurationTableEntry.java
+1
-1
DataSourceProperties.java
...amework/boot/autoconfigure/jdbc/DataSourceProperties.java
+1
-1
No files found.
buildSrc/build.gradle
View file @
f2a1840c
...
...
@@ -18,7 +18,8 @@ dependencies {
implementation
(
"com.fasterxml.jackson.core:jackson-databind:2.10.0"
)
implementation
(
"commons-codec:commons-codec:1.13"
)
implementation
(
"org.apache.maven:maven-embedder:3.6.2"
)
implementation
(
"org.asciidoctor:asciidoctor-gradle-jvm:2.4.0"
)
implementation
(
"org.asciidoctor:asciidoctor-gradle-jvm:3.0.0"
)
implementation
(
"org.asciidoctor:asciidoctor-gradle-jvm-pdf:3.0.0"
)
implementation
(
"org.springframework:spring-core:5.2.2.RELEASE"
)
implementation
(
"org.springframework:spring-web:5.2.2.RELEASE"
)
implementation
(
"com.google.code.gson:gson:2.8.5"
)
...
...
buildSrc/src/main/java/org/springframework/boot/build/context/properties/SingleConfigurationTableEntry.java
View file @
f2a1840c
...
...
@@ -74,7 +74,7 @@ class SingleConfigurationTableEntry extends ConfigurationTableEntry {
builder
.
append
(
"|"
);
}
else
{
String
cleanedDescription
=
this
.
description
.
replace
(
"|"
,
"\\|"
);
String
cleanedDescription
=
this
.
description
.
replace
(
"|"
,
"\\|"
)
.
replace
(
"<"
,
"<"
).
replace
(
">"
,
">"
)
;
builder
.
append
(
"|+++"
,
cleanedDescription
,
"+++"
);
}
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java
View file @
f2a1840c
...
...
@@ -89,7 +89,7 @@ public class DataSourceProperties implements BeanClassLoaderAware, InitializingB
private
String
password
;
/**
* JNDI location of the datasource. Class, url, username
&
password are ignored when
* JNDI location of the datasource. Class, url, username
and
password are ignored when
* set.
*/
private
String
jndiName
;
...
...
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