Skip to content

Commit

Permalink
Add 2.11 cross build
Browse files Browse the repository at this point in the history
  • Loading branch information
nafg committed Jul 29, 2014
1 parent f29129c commit e387766
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: scala
script: sbt test publish coveralls package
script: sbt +test +publish +coveralls +package
env:
global:
secure: APrQBWcOM2kkihTSSPIEiPEAIiM1Gi1HLNK6Sz/cBtRttXVnMUr7CHU9hbPKtJP94iYmc3gZKY5YjZVG7oKh1B3hUx7booHMPS0fyaC0bxUwRLSWIrav+c2cTzwYvoKz4smS81njrq+i4F/g/+05jqsiwSu7bpjiueiXjROXLZk=
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
scalaVersion := "2.10.4"
crossScalaVersions := Seq("2.10.4", "2.11.2")

libraryDependencies += "com.typesafe.slick" %% "slick" % "2.1.0-RC3"

name := "slick-additions"

organization := "io.github.nafg"

libraryDependencies += "org.scalatest" %% "scalatest" % "2.0.M6-SNAP5" % "test"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.0" % "test"

libraryDependencies += "com.h2database" % "h2" % "1.3.170" % "test"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ trait KeyedTableComponent extends JdbcDriver {

def deleteQuery(keep: Seq[K2]) =
query.filter {
case t: T2 with simple.EntityTable[K2, V2] =>
case t: simple.EntityTable[K2, V2] =>
implicit def tm: BaseColumnType[K2] = t.keyMapper
!(t.key inSet keep)
}
Expand Down

0 comments on commit e387766

Please sign in to comment.