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
81d1b3c6
Commit
81d1b3c6
authored
Oct 12, 2017
by
Brian Clozel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build against Spring Framework 5.0.1.BUILD-SNAPSHOT
See gh-10587
parent
273defdb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
pom.xml
spring-boot-project/spring-boot-dependencies/pom.xml
+1
-1
MustacheViewTests.java
...work/boot/web/reactive/result/view/MustacheViewTests.java
+2
-2
No files found.
spring-boot-project/spring-boot-dependencies/pom.xml
View file @
81d1b3c6
...
...
@@ -141,7 +141,7 @@
<slf4j.version>
1.7.25
</slf4j.version>
<snakeyaml.version>
1.18
</snakeyaml.version>
<solr.version>
6.6.1
</solr.version>
<spring.version>
5.0.
0.RELEASE
</spring.version>
<spring.version>
5.0.
1.BUILD-SNAPSHOT
</spring.version>
<spring-amqp.version>
2.0.0.RELEASE
</spring-amqp.version>
<spring-cloud-connectors.version>
2.0.0.M1
</spring-cloud-connectors.version>
<spring-batch.version>
4.0.0.M3
</spring-batch.version>
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/reactive/result/view/MustacheViewTests.java
View file @
81d1b3c6
...
...
@@ -26,7 +26,7 @@ import org.junit.Test;
import
org.springframework.context.support.GenericApplicationContext
;
import
org.springframework.http.MediaType
;
import
org.springframework.mock.http.server.reactive.MockServerHttpRequest
;
import
org.springframework.mock.
http.server.reactive
.MockServerWebExchange
;
import
org.springframework.mock.
web.server
.MockServerWebExchange
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
...
...
@@ -51,7 +51,7 @@ public class MustacheViewTests {
@Test
public
void
viewResolvesHandlebars
()
throws
Exception
{
this
.
exchange
=
MockServer
HttpRequest
.
get
(
"/test"
).
toExchange
(
);
this
.
exchange
=
MockServer
WebExchange
.
from
(
MockServerHttpRequest
.
get
(
"/test"
).
build
()
);
MustacheView
view
=
new
MustacheView
();
view
.
setCompiler
(
Mustache
.
compiler
());
view
.
setUrl
(
this
.
templateUrl
);
...
...
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