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:
parent
6bd32c9985
commit
eeb0dff456
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,9 +1,11 @@
|
||||
bin/
|
||||
build/
|
||||
eclipse/
|
||||
run/
|
||||
.gradle/
|
||||
.settings/
|
||||
.classpath
|
||||
.project
|
||||
.DS_Store
|
||||
*.launch
|
||||
Thumbs.db
|
||||
|
10
build.gradle
10
build.gradle
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user