From 9d7d4a34b1751b72f173ec7d6ecf4fee8fa84b18 Mon Sep 17 00:00:00 2001 From: Nathan Hamblen Date: Sun, 31 Jan 2010 20:30:01 -0500 Subject: [PATCH] spde 0.2.3, processing 1.0.9 --- plugin/src/main/scala/OpenGLProject.scala | 2 +- plugin/src/main/scala/SpdeProject.scala | 3 ++- project/build.properties | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/plugin/src/main/scala/OpenGLProject.scala b/plugin/src/main/scala/OpenGLProject.scala index d8d3797..9ec2542 100644 --- a/plugin/src/main/scala/OpenGLProject.scala +++ b/plugin/src/main/scala/OpenGLProject.scala @@ -6,7 +6,7 @@ import sbt._ class DefaultOpenGLProject(info: ProjectInfo) extends DefaultProject(info) with OpenGLProject trait OpenGLProject extends SpdeProject with PackagePaths with JoglProject { - val opengl = "us.technically.spde" % "processing-opengl" % spdeVersion.value + val opengl = "org.processing" % "opengl" % processingVersion.value override def fork = Some(new ProjectDirectoryRun { override def runJVMOptions = "-Djava.library.path=./lib_managed/compile/" :: Nil } ) diff --git a/plugin/src/main/scala/SpdeProject.scala b/plugin/src/main/scala/SpdeProject.scala index 7ba8a26..3dc3b8c 100644 --- a/plugin/src/main/scala/SpdeProject.scala +++ b/plugin/src/main/scala/SpdeProject.scala @@ -8,7 +8,8 @@ class DefaultSpdeProject(info: ProjectInfo) extends DefaultProject(info) with Sp trait SpdeProject extends BasicScalaProject { val databinder_repo = "Databinder Repository" at "http://databinder.net/repo" - val spdeVersion = propertyOptional[String]("1.0.3__0.2.2") + val spdeVersion = propertyOptional[String]("0.2.3") + val processingVersion = propertyOptional[String]("1.0.9") val spde = "us.technically.spde" %% "spde-core" % spdeVersion.value val spdeSourcePath = path(".") diff --git a/project/build.properties b/project/build.properties index bfab1c2..e8bfa85 100644 --- a/project/build.properties +++ b/project/build.properties @@ -3,6 +3,6 @@ project.organization=us.technically.spde project.name=Spde sbt sbt.version=0.5.7-p1 -project.version=0.2.2 +project.version=0.2.3 scala.version=2.7.6 project.initialize=false