Skip to content
This repository was archived by the owner on Aug 17, 2019. It is now read-only.

Commit 4d766a0

Browse files
committed
Update working versions
1 parent 04aae1b commit 4d766a0

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project.organization=com.ckkloverdos
2020
project.name=streamresource
2121
sbt.version=0.7.7
22-
project.version=0.2.0
22+
project.version=0.3.0-SNAPSHOT
2323
publish.remote=false
2424
build.scala.versions=2.9.1
2525
project.initialize=false

project/build/Project.scala

+5-4
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,17 @@ class Project(info: ProjectInfo) extends DefaultProject(info) {
6060
</developer>
6161
</developers>;
6262

63-
val lib_maybe = "com.ckkloverdos" %% "maybe" % "0.3.0" % "compile" withSources()
64-
val lib_sysprop = "com.ckkloverdos" %% "sysprop" % "0.1.0" % "compile" withSources()
65-
val lib_converter = "com.ckkloverdos" %% "converter" % "0.3.0" % "compile" withSources()
63+
val lib_maybe = "com.ckkloverdos" %% "maybe" % "0.4.0-SNAPSHOT" % "compile" withSources()
64+
val lib_sysprop = "com.ckkloverdos" %% "sysprop" % "0.2.0-SNAPSHOT" % "compile" withSources()
65+
val lib_converter = "com.ckkloverdos" %% "converter" % "0.4.0-SNAPSHOT" % "compile" withSources()
66+
val lib_typedkey = "com.ckkloverdos" %% "typedkey" % "0.2.0-SNAPSHOT" % "compile" withSources()
6667
val lib_slf4j = "org.slf4j" % "slf4j-api" % "1.6.1" % "compile" withSources()
6768
val lib_logback_simple = "ch.qos.logback" % "logback-classic" % "0.9.28" % "test" withSources()
6869
val lib_junit_interface = "com.novocode" % "junit-interface" % "0.7" % "test"
6970

7071
override def testOptions =
7172
super.testOptions ++
72-
Seq(TestArgument(TestFrameworks.JUnit, "-q", "-v"))
73+
Seq(TestArgument(TestFrameworks.JUnit, "-q"))
7374

7475
// Set up publish repository (the tuple avoids SBT's ReflectiveRepositories detection)
7576
private lazy val ScalaToolsReleases_t = ("Scala Tools Releases" -> "http://nexus.scala-tools.org/content/repositories/releases/")

0 commit comments

Comments
 (0)