diff --git a/.ci/travis.sh b/.ci/travis.sh index 317c136e4..de3cc7fcb 100755 --- a/.ci/travis.sh +++ b/.ci/travis.sh @@ -32,7 +32,7 @@ function isMasterOrDevelop() { # Required for HTTP authentication tests ./coursier launch \ - io.get-coursier:http-server_2.11:1.0.0-SNAPSHOT \ + io.get-coursier:http-server-java7_2.11:1.0.0-SNAPSHOT \ -r http://dl.bintray.com/scalaz/releases \ -- \ -d tests/jvm/src/test/resources/test-repo/http/abc.com \ diff --git a/appveyor.yml b/appveyor.yml index 855057ebe..d3609cd8e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,7 +19,7 @@ build_script: - sbt ++2.10.6 clean compile - sbt ++2.10.6 coreJVM/publishLocal cache/publishLocal # to make the scripted tests happy test_script: - - ps: Start-Job { & java -jar -noverify C:\projects\coursier\coursier launch -r http://dl.bintray.com/scalaz/releases io.get-coursier:http-server_2.11:1.0.0-SNAPSHOT -- -d /C:/projects/coursier/tests/jvm/src/test/resources/test-repo/http/abc.com -u user -P pass -r realm -v } + - ps: Start-Job { & java -jar -noverify C:\projects\coursier\coursier launch -r http://dl.bintray.com/scalaz/releases io.get-coursier:http-server-java7_2.11:1.0.0-SNAPSHOT -- -d /C:/projects/coursier/tests/jvm/src/test/resources/test-repo/http/abc.com -u user -P pass -r realm -v } - sbt ++2.11.8 testsJVM/test # Would node be around for testsJS/test? - sbt ++2.10.6 testsJVM/test plugin/scripted cache: diff --git a/build.sbt b/build.sbt index 9e8d27007..7c3e04dea 100644 --- a/build.sbt +++ b/build.sbt @@ -556,6 +556,7 @@ lazy val `http-server` = project .settings(commonSettings) .settings(packAutoSettings) .settings( + name := "http-server-java7", libraryDependencies ++= Seq( "org.http4s" %% "http4s-blazeserver" % http4sVersion, "org.http4s" %% "http4s-dsl" % http4sVersion,