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:
parent
6bd32c9985
commit
eeb0dff456
2
.gitignore
vendored
2
.gitignore
vendored
@ -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
|
||||||
|
10
build.gradle
10
build.gradle
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user