Skip to content

Commit

Permalink
Add a shaded version of JSF dependency
Browse files Browse the repository at this point in the history
Relieves burden from application developers using Java 11 so that they don't have to add the JSF dependency manually.
  • Loading branch information
bmuschko committed Mar 9, 2019
1 parent 1f53f53 commit d5ed424
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle.kts
Expand Up @@ -25,6 +25,7 @@ repositories {

dependencies {
shaded("com.github.docker-java:docker-java:3.1.0-rc-7")
shaded("javax.activation:activation:1.1.1")
shaded("org.ow2.asm:asm:7.0")
testImplementation("org.spockframework:spock-core:1.2-groovy-2.5") {
exclude(group = "org.codehaus.groovy")
Expand Down
Expand Up @@ -48,7 +48,8 @@ class ShadedArtifactsPlugin: Plugin<Project> {
"javax.inject",
"javax.ws",
"net.sf",
"org.objectweb"
"org.objectweb",
"javax.activation"
)
return tasks.named<ShadowJar>("shadowJar") {
classifier = null
Expand Down

0 comments on commit d5ed424

Please sign in to comment.