1
0
mirror of https://github.com/chylex/Java-Checker.git synced 2025-05-18 07:34:03 +02:00

Update gitignore and build.gradle for 1.8.8

This commit is contained in:
chylex 2015-12-12 19:30:21 +01:00
parent 6bd32c9985
commit eeb0dff456
2 changed files with 8 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,9 +1,11 @@
bin/
build/
eclipse/
run/
.gradle/
.settings/
.classpath
.project
.DS_Store
*.launch
Thumbs.db

View File

@ -58,12 +58,14 @@ task shadeJar(type: Jar, dependsOn: "jar"){
jar.enabled = false
reobf{
reobf java7Jar{ classpath -> classpath = configurations.compile }
reobf java8Jar{ classpath -> classpath = configurations.compile }
reobf shadeJar{ classpath -> classpath = configurations.compile }
java7Jar{ classpath = sourceSets.main.compileClasspath }
java8Jar{ classpath = sourceSets.main.compileClasspath }
shadeJar{ classpath = sourceSets.main.compileClasspath }
}
reobf.enabled = false
reobfJar{
enabled = false
}
processResources{
inputs.property "version", project.version