mirror of https://github.com/sbt/sbt.git
Exclude all the plexus libraries
These are used by coursier.cache.ArchiveCache, that is unused in sbt-coursier / lm-coursier
This commit is contained in:
parent
c41a4e0d66
commit
27c5430f28
|
|
@ -24,9 +24,10 @@ inThisBuild(List(
|
|||
Global / excludeLintKeys += scriptedBufferLog
|
||||
Global / excludeLintKeys += scriptedLaunchOpts
|
||||
|
||||
lazy val coursierVersion0 = "2.1.2"
|
||||
lazy val coursierDep = ("io.get-coursier" %% "coursier" % coursierVersion0)
|
||||
.exclude("com.github.luben", "zstd-jni")
|
||||
def coursierVersion0 = "2.1.2"
|
||||
def coursierDep = ("io.get-coursier" %% "coursier" % coursierVersion0)
|
||||
.exclude("org.codehaus.plexus", "plexus-archiver")
|
||||
.exclude("org.codehaus.plexus", "plexus-container-default")
|
||||
|
||||
def dataclassGen(data: Reference) = Def.taskDyn {
|
||||
val root = (ThisBuild / baseDirectory).value.toURI.toString
|
||||
|
|
|
|||
Loading…
Reference in New Issue