mirror of https://github.com/sbt/sbt.git
Fix 2.0.0-RC3 regression (#113)
Disable classpath ordering of JARs for now New coursier 2.0.0-RC3 feature, maybe enabled too early here.
This commit is contained in:
parent
aa53418218
commit
ab55269e63
|
|
@ -35,6 +35,7 @@ object ArtifactsRun {
|
|||
.withResolutions(params.resolutions)
|
||||
.withArtifactTypes(Set(Type.all))
|
||||
.withClassifiers(params.classifiers.getOrElse(Nil).toSet)
|
||||
.withClasspathOrder(false)
|
||||
.addExtraArtifacts { l =>
|
||||
if (params.includeSignatures)
|
||||
l.flatMap(_._3.extra.get("sig").toSeq)
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
scalaVersion := "2.13.0"
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.2.6")
|
||||
addSbtCoursier
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
addSbtPlugin {
|
||||
|
||||
val name = sys.props.getOrElse(
|
||||
"plugin.name",
|
||||
sys.error("plugin.name Java property not set")
|
||||
)
|
||||
val version = sys.props.getOrElse(
|
||||
"plugin.version",
|
||||
sys.error("plugin.version Java property not set")
|
||||
)
|
||||
|
||||
"io.get-coursier" % name % version
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
> compile
|
||||
Loading…
Reference in New Issue