1
0
mirror of https://github.com/chylex/Java-Checker.git synced 2025-06-02 14:34:12 +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/ bin/
build/ build/
eclipse/ eclipse/
run/
.gradle/ .gradle/
.settings/ .settings/
.classpath .classpath
.project .project
.DS_Store .DS_Store
*.launch
Thumbs.db Thumbs.db

View File

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