Updated version to 0.8x

This commit is contained in:
Jonas Bonér 2010-03-30 19:37:48 +02:00
parent 8800f70ff2
commit ef79034cdc
5 changed files with 10 additions and 9 deletions

View file

@ -12,7 +12,7 @@ import net.lag.configgy.{Configgy, ParseException}
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
object Config extends Logging {
val VERSION = "0.7"
val VERSION = "0.8"
// Set Multiverse options for max speed
System.setProperty("org.multiverse.MuliverseConstants.sanityChecks", "false")

View file

@ -15,7 +15,7 @@
</log>
<akka>
version = "0.7"
version = "0.8"
# FQN to the class doing initial active object/actor
# supervisor bootstrap, should be defined in default constructor

View file

@ -1,6 +1,6 @@
project.organization=se.scalablesolutions.akka
project.name=akka
project.version=0.7-2.8
project.version=0.8
scala.version=2.8.0.Beta1
sbt.version=0.7.2
def.scala.version=2.7.7

View file

@ -96,8 +96,8 @@ abstract class AkkaDefaults(info: ProjectInfo) extends DefaultProject(info) with
(Attributes.Name.CLASS_PATH, cp),
(IMPLEMENTATION_TITLE, "Akka"),
(IMPLEMENTATION_URL, "http://akkasource.org"),
(IMPLEMENTATION_VENDOR, "The Akka Project"),
(SEALED, "true"))).toList :::
(IMPLEMENTATION_VENDOR, "The Akka Project")
)).toList :::
getMainClass(false).map(MainClass(_)).toList
// create a manifest with all akka jars and dependency jars on classpath
@ -144,8 +144,9 @@ abstract class AkkaDefaults(info: ProjectInfo) extends DefaultProject(info) with
descendents(configurationPath(Configurations.Compile) ##, "*.jar"))
.filter(jar => // remove redundant libs
!jar.toString.endsWith("stax-api-1.0.1.jar") &&
!jar.toString.endsWith("scala-library-2.7.5.jar") &&
!jar.toString.endsWith("scala-library-2.7.6.jar"))
!jar.toString.endsWith("scala-library-2.7.7.jar") &&
!jar.toString.endsWith("scala-library-2.7.6.jar") &&
!jar.toString.endsWith("scala-library-2.7.5.jar"))
}
def deployTask(info: ProjectInfo, toDir: Path) = task {

View file

@ -1,7 +1,7 @@
#!/bin/bash
cd $AKKA_HOME
VERSION=akka_2.7.7-0.7
TARGET_DIR=dist/$1
VERSION=akka_2.8.0.Beta1-0.8
TARGET_DIR=dist/$VERSION/$1
shift 1
VMARGS=$@