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:
Alexandre Archambault 2019-08-05 16:03:09 +02:00 committed by GitHub
parent aa53418218
commit ab55269e63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 0 deletions

View File

@ -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)

View File

@ -0,0 +1 @@
scalaVersion := "2.13.0"

View File

@ -0,0 +1,2 @@
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.2.6")
addSbtCoursier

View File

@ -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
}

View File

@ -0,0 +1 @@
> compile