Skip to content
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.

Commit

Permalink
add slack (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsargent committed Oct 6, 2016
1 parent 4232a88 commit 04f4355
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 24 deletions.
25 changes: 9 additions & 16 deletions .travis.yml
@@ -1,22 +1,15 @@
language: scala
scala:
- 2.11.8
sudo: false
# This is needed as long as the travis build environment is JDK 1.8.0 < u40 (at time of writing it is u31)
# Otherwise, FSpec fails due to deadlocks caused by CompletableFuture.thenCompose blocking in the trampoline
# executor.
addons:
apt:
packages:
- oracle-java8-installer
- 2.11.8
jdk:
- oraclejdk8
- oraclejdk8
cache:
directories:
- $HOME/.ivy2/cache
- "$HOME/.ivy2/cache"
before_cache:
# Ensure changes to the cache aren't persisted
- rm -rf $HOME/.ivy2/cache/com.typesafe.play/*
- rm -rf $HOME/.ivy2/cache/scala_*/sbt_*/com.typesafe.play/*
# Delete all ivydata files since ivy touches them on each build
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print0 | xargs -n10 -0 rm
- rm -rf $HOME/.ivy2/cache/com.typesafe.play/*
- rm -rf $HOME/.ivy2/cache/scala_*/sbt_*/com.typesafe.play/*
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print0 | xargs -n10 -0 rm
notifications:
slack:
secure: a738ADtNq3eN26B6LCcd+NY83s+PQjQagL0S9HhBFvCpvzkQ/CwAK9l5keWayM2S4IUBOmsS/uMuKodmP7QoPN3XxUGgsZNTMjHT1FAa/rc6N2MKF5C20fBII1/cJOuXBZ5x+2EW+odch3+0pafMCXI/RZZLiHELD2Jx6JGS0lQ=
15 changes: 7 additions & 8 deletions build.sbt
Expand Up @@ -6,12 +6,11 @@ scalaVersion := "2.11.8"

resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"

libraryDependencies ++= Seq(
jdbc,
evolutions,
"com.adrianhurt" %% "play-bootstrap" % "1.0-P25-B3",
"com.typesafe.play" %% "anorm" % "2.5.0",
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % "test"
)

lazy val root = (project in file(".")).enablePlugins(PlayScala)

libraryDependencies += jdbc
libraryDependencies += evolutions
libraryDependencies += "com.adrianhurt" %% "play-bootstrap" % "1.0-P25-B3"
libraryDependencies += "com.typesafe.play" %% "anorm" % "2.5.0"
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % "test"

0 comments on commit 04f4355

Please sign in to comment.