Skip to content

Instantly share code, notes, and snippets.

@krasserm
Created April 14, 2011 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krasserm/919775 to your computer and use it in GitHub Desktop.
Save krasserm/919775 to your computer and use it in GitHub Desktop.
Downgrade to Akka 1.0 and Scala 2.8.1
Index: project/build/Project.scala
===================================================================
--- project/build/Project.scala (date 1302329914000)
+++ project/build/Project.scala (revision )
@@ -3,9 +3,9 @@
class Project(info: ProjectInfo) extends DefaultProject(info) with IdeaProject with AkkaProject {
val ScalazVersion = "5.0"
val CamelVersion = "2.7.0"
- val AkkaVersion = "1.1-M1"
+ val AkkaVersion = "1.0"
- lazy val akkaModuleConfig = ModuleConfiguration("se.scalablesolutions.akka", AkkaRepositories.Akka_Repository)
+ //lazy val akkaModuleConfig = ModuleConfiguration("se.scalablesolutions.akka", AkkaRepositories.Akka_Repository)
lazy val scalazCamelCore = project("scalaz-camel-core", "scalaz-camel-core", new ProjectCore(_))
lazy val scalazCamelAkka = project("scalaz-camel-akka", "scalaz-camel-akka", new ProjectAkka(_), scalazCamelCore)
@@ -21,7 +21,7 @@
lazy val activemqCore = "org.apache.activemq" % "activemq-core" % "5.3.2"
lazy val slf4jSimple = "org.slf4j" % "slf4j-simple" % "1.5.11"
- lazy val scalatest = "org.scalatest" % "scalatest" % "1.4-SNAPSHOT"
+ lazy val scalatest = "org.scalatest" % "scalatest" % "1.2"
lazy val junit = "junit" % "junit" % "4.8.2"
}
@@ -44,6 +44,7 @@
class ProjectAkka(info: ProjectInfo) extends DefaultProject(info) with IdeaProject {
// Compile
lazy val akkaCamel = "se.scalablesolutions.akka" % "akka-camel" % AkkaVersion
+ lazy val slf4jSimple = "org.slf4j" % "slf4j-simple" % "1.6.0" % "test"
}
class ProjectSamples(info: ProjectInfo) extends DefaultProject(info) with IdeaProject {
Index: project/plugins/Plugins.scala
===================================================================
--- project/plugins/Plugins.scala (date 1302329914000)
+++ project/plugins/Plugins.scala (revision )
@@ -5,5 +5,5 @@
val sbtIdea = "com.github.mpeltonen" % "sbt-idea-plugin" % "0.2.0"
val akkaRepo = "Akka Repository" at "http://akka.io/repository/"
- val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.1-M1"
+ val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.0"
}
Index: project/build.properties
===================================================================
--- project/build.properties (date 1302329914000)
+++ project/build.properties (revision )
@@ -2,5 +2,5 @@
project.name=scalaz-camel
sbt.version=0.7.5.RC0
project.version=0.3
-build.scala.versions=2.9.0.RC1
+build.scala.versions=2.8.1
project.initialize=false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment