mirror of https://github.com/sbt/sbt.git
Merge pull request #457 from coursier/exclude-plexus-stuff
Exclude plexus stuff
This commit is contained in:
commit
aeedc5ca52
|
|
@ -5,6 +5,7 @@ target/
|
|||
.metals/
|
||||
.bloop/
|
||||
metals.sbt
|
||||
.vscode/
|
||||
|
||||
# Intellij
|
||||
.idea/
|
||||
|
|
|
|||
|
|
@ -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