Skip to content

Commit

Permalink
Incr version, add deobf jar for use with Proguard
Browse files Browse the repository at this point in the history
  • Loading branch information
unascribed committed Apr 7, 2017
1 parent be2ff86 commit a1eb593
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ apply plugin: 'maven'

group = "com.elytradev"
archivesBaseName = "Concrete"
version = "0.1.0"
version = "0.2.0"

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -66,6 +66,15 @@ processResources {
}
}

task deobfJar(type: Jar, dependsOn: 'jar') {
classifier 'deobf'
from 'build/classes/main'
}

artifacts {
archives deobfJar
}

def parseConfig(File config) {
config.withReader {
def prop = new Properties()
Expand Down

0 comments on commit a1eb593

Please sign in to comment.