Skip to content
This repository was archived by the owner on Jun 16, 2020. It is now read-only.

Commit 8a2d6af

Browse files
committed
Play2.1RC3
1 parent 8878461 commit 8a2d6af

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

app/website/SiteDesc.scala

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ class SiteDesc extends Website {
1919
"Liste des Clients" -> "clients",
2020
"Liste des Comptes" -> "comptes",
2121
"Rechercher un compte" -> "rechercheCompte",
22-
"Mes comptes" -> "myAccounts"
22+
"Mes comptes" -> "myAccounts",
23+
"Gros comptes" -> "bigAccounts"
2324
)
2425

2526
override val pages = List[Page](
@@ -28,7 +29,7 @@ class SiteDesc extends Website {
2829
withQuery "SELECT CLI.NOM,CLI.PRENOM,CLI.ID FROM COMPTE CPT, CLIENT CLI WHERE CPT.SOLDE >= 10000 AND CLI.ID = CPT.CLIENT"
2930
withColumn
3031
"ID" -> "Détail" linkedTo "client" as "idClient" named "Détail du client",
31-
32+
3233

3334
/* List of all clients, with a link to detail page of a client */
3435
listPage("clients")
@@ -112,3 +113,4 @@ class SiteDesc extends Website {
112113

113114

114115

116+

project/Build.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ object ApplicationBuild extends Build {
1515
)
1616

1717
lazy val module = play.Project("websql-module","2.0-SNAPSHOT",Seq(
18-
"com.typesafe" % "slick_2.10.0-RC1" % "0.11.2",
18+
"com.typesafe" % "slick_2.10.0-RC2" % "0.11.2",
1919
"org.slf4j" % "slf4j-nop" % "1.6.4",
2020
"com.h2database" % "h2" % "1.3.166"
2121
),path = file("modules/websql")

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ logLevel := Level.Warn
55
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
66

77
// Use the Play sbt plugin for Play projects
8-
addSbtPlugin("play" % "sbt-plugin" % "2.1-RC1")
8+
addSbtPlugin("play" % "sbt-plugin" % "2.1-RC3")

0 commit comments

Comments
 (0)