Skip to content

Commit 56d6832

Browse files
author
Alejandro Gómez
authored
Merge pull request #37 from scala-exercises/versioning
Use toolchain with the same version as the content
2 parents 17500b9 + 852896e commit 56d6832

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ scala:
44
jdk:
55
- oraclejdk8
66
script:
7-
- git clone https://github.com/scala-exercises/site.git site
8-
- pushd site; sbt 'definitions/publishLocal' 'runtime/publishLocal' 'compiler/publishLocal' 'sbt-exercise/publishLocal' ; popd
97
- sbt test
108
after_success:
119
- bash deploy.sh

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ lazy val stdlib = (project in file("."))
1313
libraryDependencies ++= Seq(
1414
"com.chuusai" %% "shapeless" % "2.2.5",
1515
"org.scalatest" %% "scalatest" % "2.2.4",
16-
"org.scala-exercises" %% "exercise-compiler" % "0.1.+" changing(),
17-
"org.scala-exercises" %% "definitions" % "0.1.+" changing(),
16+
"org.scala-exercises" %% "exercise-compiler" % version.value,
17+
"org.scala-exercises" %% "definitions" % version.value,
1818
"org.scalacheck" %% "scalacheck" % "1.12.5",
1919
"com.github.alexarchambault" %% "scalacheck-shapeless_1.12" % "0.3.1"
2020
),

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.1.+", "0.13", "2.10")
1+
addSbtPlugin("org.scala-exercises" % "sbt-exercise" % "0.1.1", "0.13", "2.10")
22
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

0 commit comments

Comments
 (0)