Fix MDK not having license texts.

This commit is contained in:
LexManos 2018-07-08 16:43:45 -07:00
parent 5624afbc32
commit da888df463
1 changed files with 1 additions and 7 deletions

View File

@ -252,14 +252,13 @@ task makeMdk(type: Zip) {
from 'gradlew'
from 'gradlew.bat'
from extraTxts
into ('gradle') {
from 'gradle'
}
into ('eclipse') {
from 'mdk/eclipse'
}
if (project.hasProperty('forgeJenkinsPass'))
from changelog.output
from ('mdk') {
filter(ReplaceTokens, tokens: [
VERSION: project.version,
@ -267,11 +266,6 @@ task makeMdk(type: Zip) {
])
exclude 'eclipse'
rename 'gitignore\\.txt', '.gitignore'
from 'MinecraftForge-Credits.txt'
from 'LICENSE-new.txt'
from 'Paulscode IBXM Library License.txt'
from 'Paulscode SoundSystem CodecIBXM License.txt'
from 'CREDITS-fml.txt'
}
}
tasks.build.dependsOn makeMdk