Skip to content

Commit

Permalink
undo changes to API jar packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Apr 6, 2019
1 parent e96214a commit 2fe3931
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Expand Up @@ -153,6 +153,11 @@ task sourcesJar(type: Jar) {

task apiJar(type: Jar) {
classifier = "api"
from sourceSets.api.output

// TODO: when FG bug is fixed, remove allJava from the api jar.
// https://github.com/MinecraftForge/ForgeGradle/issues/369
// Gradle should be able to pull them from the -sources jar.
from sourceSets.api.allJava
}

Expand Down

0 comments on commit 2fe3931

Please sign in to comment.