Updated version to 0.8x
This commit is contained in:
parent
8800f70ff2
commit
ef79034cdc
5 changed files with 10 additions and 9 deletions
|
|
@ -12,7 +12,7 @@ import net.lag.configgy.{Configgy, ParseException}
|
|||
* @author <a href="http://jonasboner.com">Jonas Boné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")
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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=$@
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue