Skip to content

Commit

Permalink
Include CCL interface in API jar
Browse files Browse the repository at this point in the history
  • Loading branch information
LunNova committed Jan 20, 2017
1 parent 73941a7 commit bda3248
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,16 @@ def apiJarConfig = {
from {
sourceSets.main.allSource
sourceSets.main.output
} {
include 'me/nallar/modpatcher/ModPatcher.*'
include 'me/nallar/modpatcher/ModPatcher$Version.*'
include 'me/nallar/modpatcher/ModPatcherSetup.*'
}
from((configurations.provided).filter { it.exists() }.collect {
it.isDirectory() ? it : zipTree(it)
}) {
include 'net/minecraft/launchwrapper/nallar/cachingclassloader/CachingClassLoader.*'
}
include 'me/nallar/modpatcher/ModPatcher.*'
include 'me/nallar/modpatcher/ModPatcher$Version.*'
include 'me/nallar/modpatcher/ModPatcherSetup.*'
}

task apiJar(type: Jar, dependsOn: classes)
Expand Down

0 comments on commit bda3248

Please sign in to comment.