Trying to fix the MDK to include gradle wrapper, but the gradle-wrapper.jar is

corrupted. @AbrarSyed can you take a look?
This commit is contained in:
cpw 2015-08-15 09:56:56 -07:00
parent 91927e6bc7
commit 9a0a00c7a4
1 changed files with 5 additions and 1 deletions

View File

@ -166,6 +166,11 @@ task makeMdk(type: Zip) {
version = project.version
destinationDir = file('build/distributions')
from 'gradlew'
from 'gradlew.bat'
into ('gradle') {
from 'gradle'
}
from 'mdk'
filter(ReplaceTokens, tokens: [
VERSION: project.version,
@ -178,7 +183,6 @@ task makeMdk(type: Zip) {
from 'Paulscode SoundSystem CodecIBXM License.txt'
from 'LICENSE-fml.txt'
from changelog.output
}
tasks.build.dependsOn makeMdk