Is it raining, is it snowing

This commit is contained in:
Adubbz 2014-01-19 17:27:19 +11:00
parent 0bfc7cc3fc
commit 62085fc154
1 changed files with 3 additions and 1 deletions

View File

@ -112,7 +112,7 @@ task createChangelog(type: ChangelogTask) {
setAuthName(new DelayedString(project, 'console_script'));
setAuthPassword(new DelayedString(project, 'dc6d48ca20a474beeac280a9a16a926e'));
setTargetBuild({buildNumber.toString()});
setOutput(new DelayedFile(project, 'build/distributions/' + jobName + project.version + '-changelog.txt'));
setOutput(new DelayedFile(project, 'build/distributions/' + project.getName() + project.version + '-changelog.txt'));
}
tasks.build.dependsOn('createChangelog')
@ -143,6 +143,8 @@ artifacts {
archives sourceJar
archives deobfJar
archives apiJar
archives project.file('build/distributions/' + project.getName() + project.version + '-changelog.txt')
}
uploadArchives {