Skip to content

Commit 8e25747

Browse files
committed
version 1.7.0
1 parent 2338800 commit 8e25747

File tree

11 files changed

+962
-915
lines changed

11 files changed

+962
-915
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ target
88
.DS_Store
99
nohup.out
1010
.ensime*
11+
.idea*

build.sbt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
lazy val root = (project in file(".")).settings(
22
organization := "org.scalatra.scalate",
33
name := "scalamd",
4-
version := "1.7.0-RC1",
5-
scalaVersion := "2.11.8",
6-
crossScalaVersions := Seq("2.12.0-RC2", "2.11.8", "2.10.6"),
4+
version := "1.7.0",
5+
scalaVersion := "2.12.0",
6+
crossScalaVersions := Seq("2.12.0", "2.11.8", "2.10.6"),
77
transitiveClassifiers in Global := Seq(Artifact.SourceClassifier),
88
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature"),
99
incOptions := incOptions.value.withNameHashing(true),
1010
libraryDependencies ++= Seq(
11-
"commons-io" % "commons-io" % "1.4" % Test,
12-
"commons-lang" % "commons-lang" % "2.5" % Test,
13-
"org.specs2" %% "specs2-core" % "3.8.5.1" % Test
11+
"commons-io" % "commons-io" % "1.4" % Test,
12+
"org.scalatest" %% "scalatest" % "3.0.0" % Test
1413
),
1514
publishMavenStyle := true,
1615
pomIncludeRepository := { x => false },

0 commit comments

Comments
 (0)