Merge pull request #457 from coursier/exclude-plexus-stuff

Exclude plexus stuff
This commit is contained in:
eugene yokota 2023-05-01 22:07:27 -04:00 committed by GitHub
commit aeedc5ca52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ target/
.metals/
.bloop/
metals.sbt
.vscode/
# Intellij
.idea/

View File

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