mirror of https://github.com/sbt/sbt.git
Rename plugin module to sbt-coursier
This commit is contained in:
parent
035391f647
commit
a6b9c845c2
|
|
@ -47,7 +47,7 @@ RUN_SHADING_TESTS=1
|
|||
|
||||
if echo "$TRAVIS_SCALA_VERSION" | grep -q "^2\.10"; then
|
||||
SBT_COMMANDS="$SBT_COMMANDS publishLocal" # to make the scripted tests happy
|
||||
SBT_COMMANDS="$SBT_COMMANDS plugin/scripted"
|
||||
SBT_COMMANDS="$SBT_COMMANDS sbt-coursier/scripted"
|
||||
|
||||
if [ "$RUN_SHADING_TESTS" = 1 ]; then
|
||||
# for the shading scripted test
|
||||
|
|
@ -68,7 +68,7 @@ if echo "$TRAVIS_SCALA_VERSION" | grep -q "^2\.10"; then
|
|||
rm -rf jarjar
|
||||
fi
|
||||
|
||||
SBT_COMMANDS="$SBT_COMMANDS plugin/publishLocal sbt-shading/scripted"
|
||||
SBT_COMMANDS="$SBT_COMMANDS sbt-coursier/publishLocal sbt-shading/scripted"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ 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-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.12.1 testsJVM/test testsJVM/it:test # Would node be around for testsJS/test?
|
||||
- sbt ++2.11.8 testsJVM/test testsJVM/it:test
|
||||
- sbt ++2.10.6 testsJVM/test testsJVM/it:test plugin/scripted plugin/publishLocal sbt-shading/scripted
|
||||
- sbt ++2.10.6 testsJVM/test testsJVM/it:test sbt-coursier/scripted sbt-coursier/publishLocal sbt-shading/scripted
|
||||
cache:
|
||||
- C:\Users\appveyor\.ivy2\cache
|
||||
- C:\Users\appveyor\.m2
|
||||
|
|
|
|||
|
|
@ -345,16 +345,13 @@ lazy val doc = project
|
|||
)
|
||||
|
||||
// Don't try to compile that if you're not in 2.10
|
||||
lazy val plugin = project
|
||||
lazy val `sbt-coursier` = project
|
||||
.dependsOn(coreJvm, cache)
|
||||
.settings(pluginSettings)
|
||||
.settings(
|
||||
name := "sbt-coursier"
|
||||
)
|
||||
|
||||
// Don't try to compile that if you're not in 2.10
|
||||
lazy val `sbt-shading` = project
|
||||
.dependsOn(plugin)
|
||||
.dependsOn(`sbt-coursier`)
|
||||
.settings(pluginSettings)
|
||||
.settings(
|
||||
// Warning: this version doesn't handle well class names with '$'s
|
||||
|
|
@ -404,7 +401,7 @@ lazy val `coursier` = project.in(file("."))
|
|||
cache,
|
||||
bootstrap,
|
||||
cli,
|
||||
plugin,
|
||||
`sbt-coursier`,
|
||||
`sbt-shading`,
|
||||
web,
|
||||
doc,
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue