aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/simple-fixed/build/build.scala1
-rw-r--r--test/simple/build/build.scala1
-rw-r--r--test/test.scala17
3 files changed, 11 insertions, 8 deletions
diff --git a/test/simple-fixed/build/build.scala b/test/simple-fixed/build/build.scala
index 3f1ff66..42130ee 100644
--- a/test/simple-fixed/build/build.scala
+++ b/test/simple-fixed/build/build.scala
@@ -24,7 +24,6 @@ class Build(context: cbt.Context) extends BasicBuild(context){
sonatypeSnapshots
).bind(
"org.cvogt" %% "play-json-extensions" % "0.8.0",
- "org.tpolecat" %% "tut-core" % "0.4.2",
"ai.x" %% "lens" % "1.0.0"
)
)
diff --git a/test/simple/build/build.scala b/test/simple/build/build.scala
index b75d262..affe7f6 100644
--- a/test/simple/build/build.scala
+++ b/test/simple/build/build.scala
@@ -35,7 +35,6 @@ class Build(val context: cbt.Context) extends BaseBuild{
sonatypeSnapshots
).bind(
"org.cvogt" %% "play-json-extensions" % "0.8.0",
- "org.tpolecat" %% "tut-core" % "0.4.2",
"ai.x" %% "lens" % "1.0.0"
)
)
diff --git a/test/test.scala b/test/test.scala
index bb7e89a..1701f06 100644
--- a/test/test.scala
+++ b/test/test.scala
@@ -147,12 +147,17 @@ object Main{
}
(
- Dependencies(
- Resolver( mavenCentral, bintray("tpolecat") ).bind(
- lib.ScalaDependency("org.tpolecat","tut-core","0.4.2", scalaMajorVersion="2.11")
- )
- ).classpath.strings
- ++
+ (
+ if(System.getenv("CIRCLECI") == null){
+ // tenporarily disable on circleci as it seems to have trouble reliably
+ // downloading from bintray
+ Dependencies(
+ Resolver( bintray("tpolecat") ).bind(
+ lib.ScalaDependency("org.tpolecat","tut-core","0.4.2", scalaMajorVersion="2.11")
+ )
+ ).classpath.strings
+ } else Nil
+ ) ++
Dependencies(
Resolver(sonatypeReleases).bind(
MavenDependency("org.cvogt","play-json-extensions_2.11","0.8.0")