From 619b9dd0c042e7338053cd37fa9f26cb34ddc323 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Fri, 5 Aug 2016 14:37:25 -0400 Subject: [PATCH] Publish http-server module as http-server-java7 --- .ci/travis.sh | 2 +- appveyor.yml | 2 +- build.sbt | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) 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,