We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8291409 commit 1d753d9Copy full SHA for 1d753d9
src/main/scala/SbtModulePatcher.scala
@@ -32,7 +32,7 @@ object SbtModulePatcher extends AutoPlugin {
32
val classpath = dependencyClasspath.value
33
val jarFiles =
34
classpath.map(_.data).filter(_.getName.endsWith(".jar"))
35
- patchJars(jarFiles)
+ patchJars(jarFiles, log)
36
},
37
compile := (compile dependsOn patchDependencies).value
38
)
@@ -47,7 +47,7 @@ object SbtModulePatcher extends AutoPlugin {
47
}
48
49
50
- def patchJars(jarFiles: Seq[File]): Unit = {
+ def patchJars(jarFiles: Seq[File], log: Logger): Unit = {
51
jarFiles.foreach { jarFile =>
52
if (!isModule(jarFile, log)) {
53
modifyJar(jarFile, log)
0 commit comments