Skip to content

Commit 9e181dd

Browse files
committed
Upgrade play version and documentations.
1 parent 201c143 commit 9e181dd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Read more @ http://bit.ly/2A1AzEq
1010

1111
## Used Summary
1212

13-
* [Play Framework: 2.7.2](https://www.playframework.com/documentation/2.7.x/Home)
13+
* [Play Framework: 2.8.0](https://www.playframework.com/documentation/2.8.x/Home)
1414
* [React: 16.8.6](https://reactjs.org/)
1515
* [Create React App: 2.1.8](https://github.com/facebookincubator/create-react-app)
1616

@@ -39,7 +39,7 @@ Read more @ http://bit.ly/2A1AzEq
3939
sbt test # Run both backend and frontend unit tests
4040
```
4141

42-
* This seed is not using [scala play views](https://www.playframework.com/documentation/2.6.x/ScalaTemplates). All the views and frontend associated routes are served via [React](https://reactjs.org/) code base under `ui` directory.
42+
* This seed is not using [scala play views](https://www.playframework.com/documentation/2.8.x/ScalaTemplates). All the views and frontend associated routes are served via [React](https://reactjs.org/) code base under `ui` directory.
4343

4444
## Complete Directory Layout
4545

project/FrontendRunHook.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import scala.sys.process.Process
55

66
/**
77
* Frontend build play run hook.
8-
* https://www.playframework.com/documentation/2.6.x/SBTCookbook
8+
* https://www.playframework.com/documentation/2.8.x/SBTCookbook
99
*/
1010
object FrontendRunHook {
1111
def apply(base: File): PlayRunHook = {

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.2.8
1+
sbt.version=1.3.5

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// The Play plugin
2-
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.2")
2+
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.0")
33

44
// Play enhancer - this automatically generates getters/setters for public fields
55
// and rewrites accessors of these fields to use the getters/setters. Remove this

ui-build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ val Success = 0
1111
val Error = 1
1212

1313
// Run serve task when Play runs in dev mode, that is, when using 'sbt run'
14-
// https://www.playframework.com/documentation/2.7.x/SBTCookbook
14+
// https://www.playframework.com/documentation/2.8.x/SBTCookbook
1515
PlayKeys.playRunHooks += baseDirectory.map(FrontendRunHook.apply).value
1616

1717
// True if build running operating system is windows.

0 commit comments

Comments
 (0)