Skip to content

Commit

Permalink
initial version that compiles and passes tests
Browse files Browse the repository at this point in the history
Some tests are currently disabled due to bugs in akka-typed.
  • Loading branch information
rkuhn committed May 13, 2017
1 parent db4e795 commit 5697aad
Show file tree
Hide file tree
Showing 9 changed files with 602 additions and 1,047 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
sudo: false
dist: trusty
language: scala

script:
- sbt test

cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/

before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
- find $HOME/.sbt -name "*.lock" -delete

jdk:
- openjdk8
13 changes: 11 additions & 2 deletions build.sbt
@@ -1,9 +1,18 @@
name := "akka-typed-session"
version := "0.1.0-SNAPSHOT"
organization := "com.rolandkuhn"
scalaVersion := "2.12.1"
scalaVersion := "2.12.2"

scalacOptions += "-deprecation"
logBuffered in Test := false

val akkaVersion = "2.5.99-TYPED-M1"
resolvers += "Akka Snapshot Repository" at "http://repo.akka.io/snapshots/"

libraryDependencies ++= Seq(
"com.chuusai" %% "shapeless" % "2.3.2",
"com.typesafe.akka" %% "akka-typed-experimental" % "2.5-M1"
"com.typesafe.akka" %% "akka-typed" % akkaVersion,
"com.typesafe.akka" %% "akka-typed-testkit" % akkaVersion % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test"
)

0 comments on commit 5697aad

Please sign in to comment.