Skip to content
This repository was archived by the owner on Dec 19, 2021. It is now read-only.

Commit 6306e76

Browse files
ThadHousePeterJohnson
authored andcommitted
Fixes shadowJar publishing to work with maven. (#61)
1 parent 0cb70e7 commit 6306e76

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle.kts

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import org.gradle.api.Project
44
import org.gradle.api.plugins.quality.FindBugs
55
import org.gradle.api.tasks.wrapper.Wrapper
66
import org.gradle.testing.jacoco.tasks.JacocoReport
7+
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
78

89
buildscript {
910
repositories {
@@ -180,7 +181,10 @@ publishing {
180181
create<MavenPublication>("OutlineViewer") {
181182
artifactId = "OutlineViewer"
182183
getWPILibVersion()?.let { version = it }
183-
shadow.component(this)
184+
val shadowJar: ShadowJar by tasks
185+
artifact (shadowJar) {
186+
classifier = null
187+
}
184188
}
185189
}
186190
}

0 commit comments

Comments
 (0)