Skip to content

Commit

Permalink
Update buildscript & apply spotless (#1306)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update buildscript, apply spotless
  • Loading branch information
eigenraven authored Aug 27, 2022
1 parent c3eac50 commit 6f31720
Show file tree
Hide file tree
Showing 731 changed files with 135,671 additions and 39,231 deletions.
35 changes: 35 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
* text eol=lf

*.jar binary

*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.tif binary
*.tiff binary
*.ico binary
*.svg text
*.eps binary

*.kar binary
*.m4a binary
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
*.ra binary

*.7z binary
*.gz binary
*.tar binary
*.tgz binary
*.zip binary

*.patch -text

*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf

*autogenerated binary
259 changes: 162 additions & 97 deletions build.gradle

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,45 +5,45 @@

dependencies {
compile("com.github.GTNewHorizons:StructureLib:1.1.5:dev")
compile("com.github.GTNewHorizons:NotEnoughItems:2.2.20-GTNH:dev")
compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.3:dev")
compile("com.github.GTNewHorizons:waila:1.5.18:dev")

compile("com.github.GTNewHorizons:NotEnoughItems:2.2.31-GTNH:dev")
compile("com.github.GTNewHorizons:CodeChickenLib:1.1.5.4:dev")
compile("com.github.GTNewHorizons:GTNHLib:0.0.1:dev")
compile("com.github.GTNewHorizons:waila:1.5.21:dev")

compile("net.industrial-craft:industrialcraft-2:2.2.828-experimental:dev")

compileOnly("com.github.GTNewHorizons:EnderCore:0.2.6:dev") {
compileOnly("com.github.GTNewHorizons:EnderCore:0.2.10:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.5:dev") {
compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.14:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:gendustry:1.6.5.4-GTNH:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Railcraft:9.13.6:dev") {
compileOnly("com.github.GTNewHorizons:Railcraft:9.13.9:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.39-GTNH:dev") {
compileOnly("com.github.GTNewHorizons:Galacticraft:3.0.44-GTNH:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:AppleCore:3.1.9:dev") {
compileOnly("com.github.GTNewHorizons:AppleCore:3.2.0:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.0.13-GTNH:dev") {
compileOnly("com.github.GTNewHorizons:TinkersConstruct:1.9.0-17-GTNH:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:harvestcraft:1.0.12-GTNH:dev") {
compileOnly("com.github.GTNewHorizons:harvestcraft:1.0.15-GTNH:dev") {
transitive = false
}
compile("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-94-GTNH:dev") {
compile("com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-100-GTNH:dev") {
transitive = false
}
compile("com.github.GTNewHorizons:Chisel:2.10.8-GTNH:dev") {
compile("com.github.GTNewHorizons:Chisel:2.10.15-GTNH:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.29:dev") {
compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.43:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:BuildCraft:7.1.27:dev") {
Expand All @@ -52,25 +52,25 @@ dependencies {
compileOnly("commons-io:commons-io:2.4") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Translocators:1.1.2.19:dev") {
compileOnly("com.github.GTNewHorizons:Translocators:1.1.2.20:dev") {
transitive = false
}
compileOnly("curse.maven:cofh-core-69162:2388751") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Nuclear-Control:2.4.8:dev") {
compileOnly("com.github.GTNewHorizons:Nuclear-Control:2.4.14:dev") {
transitive = false
}
compileOnly("thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev") {
transitive = false
}
compileOnly("com.github.GTNewHorizons:Avaritia:1.28:dev") {
compileOnly("com.github.GTNewHorizons:Avaritia:1.29:dev") {
transitive = false
}
compileOnly("com.google.auto.value:auto-value-annotations:1.8.2") {
compileOnly("com.google.auto.value:auto-value-annotations:1.9") {
transitive = false
}
annotationProcessor("com.google.auto.value:auto-value:1.8.2")
annotationProcessor("com.google.auto.value:auto-value:1.9")

testImplementation(platform('org.junit:junit-bom:5.8.2'))
testImplementation('org.junit.jupiter:junit-jupiter')
Expand Down
10 changes: 10 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
plugins {
id 'com.diffplug.blowdryerSetup' version '1.6.0'
}

apply plugin: 'com.diffplug.blowdryerSetup'

blowdryerSetup {
github('GTNewHorizons/ExampleMod1.7.10', 'tag', '0.1.5')
//devLocal '.' // Use this when testing config updates locally
}
Loading

0 comments on commit 6f31720

Please sign in to comment.