Skip to content

Commit

Permalink
fix: no longer minimize jar because it gets rid of sources :(
Browse files Browse the repository at this point in the history
  • Loading branch information
Steanky committed Aug 12, 2024
1 parent ea21edb commit 4706904
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions buildSrc/src/main/groovy/ethylene.library-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@ plugins {
id 'java-library'
id 'maven-publish'
id 'ethylene.java-conventions'
id 'com.github.johnrengelman.shadow'
}

group 'com.github.steanky'
version '0.26.1'

publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
maven(MavenPublication) {
from components.java
}
}

Expand All @@ -28,8 +27,4 @@ publishing {
}
}
}
}

shadowJar {
minimize()
}

0 comments on commit 4706904

Please sign in to comment.