From d1ee937929453431ad2640ecb03f31e55d50edd4 Mon Sep 17 00:00:00 2001 From: Raoul Van den Berge Date: Tue, 13 Sep 2016 23:36:22 +0200 Subject: [PATCH] Another attempt at obf jar building --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 4815f2743..4e1d653f1 100755 --- a/build.gradle +++ b/build.gradle @@ -74,14 +74,14 @@ processResources { task deobfJar(type: Jar) { from sourceSets.main.output - classifier = 'deobf' + classifier 'deobf' } task apiJar(type: Jar, dependsOn: 'sourceMainJava') { from sourceSets.main.allSource - from sourceSets.main.output - include 'refinedstorage/api/**/*' - classifier 'api' + from sourceSets.main.output + include 'refinedstorage/api/**/*' + classifier 'api' } artifacts { @@ -96,9 +96,9 @@ publishing { groupId = project.group artifactId = project.archivesBaseName version = project.version + '-' + System.getenv('TRAVIS_BUILD_NUMBER') - artifact jar artifact deobfJar artifact apiJar + artifact jar } } }