Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit cd2ac54

Browse files
committed
Depend on scalacheck 1.10.1
1 parent ac2c4da commit cd2ac54

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

build.sbt

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
// import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
2-
// import com.typesafe.tools.mima.plugin.MimaKeys.previousArtifact
3-
4-
// previousArtifact := Some("org.scala-lang" % "partest_2.11.0-M4" % "1.0")
5-
61
organization := "org.scala-lang"
72

83
name := "scala-partest"
@@ -17,16 +12,16 @@ libraryDependencies += "org.apache.ant" % "ant" % "1.
1712

1813
libraryDependencies += "com.googlecode.java-diff-utils" % "diffutils" % "1.3.0"
1914

20-
// libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"
21-
2215
libraryDependencies += "org.scala-lang" % "scala-xml" % "2.11.0-M4"
2316

2417
libraryDependencies += "org.scala-lang" % "scalap" % "2.11.0-M4"
2518

26-
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.2-SNAPSHOT"
19+
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.10.1"
2720

2821
libraryDependencies += "org.scala-sbt" % "test-interface" % "1.0"
2922

23+
24+
// partest.properties
3025
resourceGenerators in Compile <+= Def.task {
3126
val props = new java.util.Properties
3227
props.put("version.number", version.value)
@@ -39,6 +34,8 @@ mappings in (Compile, packageBin) += {
3934
(baseDirectory.value / "partest.properties") -> "partest.properties"
4035
}
4136

37+
38+
// maven publishing
4239
publishTo := {
4340
val nexus = "https://oss.sonatype.org/"
4441
if (version.value.trim.endsWith("SNAPSHOT"))
@@ -82,4 +79,10 @@ pomExtra := (
8279
<name>Typesafe, Inc.</name>
8380
</developer>
8481
</developers>
85-
)
82+
)
83+
84+
// TODO: mima
85+
// import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
86+
// import com.typesafe.tools.mima.plugin.MimaKeys.previousArtifact
87+
// previousArtifact := Some("org.scala-lang" % "partest_2.11.0-M4" % "1.0")
88+

0 commit comments

Comments
 (0)