-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix lighting glitches when photo plates and others are put into item …
…frames (#29) * Update buildscript & spotlessApply * Fix lighting glitches when photo plates and others are put into item frames
- Loading branch information
1 parent
903d4d4
commit 45febda
Showing
193 changed files
with
34,170 additions
and
31,128 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
// Add your dependencies here | ||
|
||
dependencies { | ||
compile('com.github.GTNewHorizons:Tainted-Magic:8.1.1.1-GTNH:dev') | ||
compile('com.github.GTNewHorizons:GT5-Unofficial:5.09.40.34:dev') | ||
compile('com.github.GTNewHorizons:ForbiddenMagic:0.6.2-GTNH:dev') | ||
compile('com.github.GTNewHorizons:twilightforest:2.3.8.13:dev') | ||
compile('com.github.GTNewHorizons:Tainted-Magic:8.1.1.1-GTNH:dev') | ||
compile('com.github.GTNewHorizons:GT5-Unofficial:5.09.40.58:dev') | ||
compile('com.github.GTNewHorizons:ForbiddenMagic:0.6.2-GTNH:dev') | ||
compile('com.github.GTNewHorizons:twilightforest:2.3.8.13:dev') | ||
|
||
compile('curse.maven:travellers-gear-224440:2262113') | ||
compile('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') | ||
compile('curse.maven:travellers-gear-224440:2262113') | ||
compile('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') | ||
|
||
compile('com.github.GTNewHorizons:CodeChickenLib:1.1.5.3:dev') | ||
compile('com.github.GTNewHorizons:NotEnoughItems:2.2.7-GTNH:dev') | ||
compileOnly('com.github.GTNewHorizons:ForgeMultipart:1.2.7:dev') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:Botania:1.9.1-GTNH:api') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:CraftTweaker:3.2.6:dev') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:ZenScript:master-SNAPSHOT') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:MagicBees:master-SNAPSHOT:api') {transitive=false} | ||
compile('com.github.GTNewHorizons:CodeChickenLib:1.1.5.3:dev') | ||
compile('com.github.GTNewHorizons:NotEnoughItems:2.2.19-GTNH:dev') | ||
compileOnly('com.github.GTNewHorizons:ForgeMultipart:1.2.7:dev') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:Botania:1.9.1-GTNH:api') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:CraftTweaker:3.2.6:dev') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:ZenScript:master-SNAPSHOT') {transitive=false} | ||
compileOnly('com.github.GTNewHorizons:MagicBees:master-SNAPSHOT:api') {transitive=false} | ||
|
||
runtime('com.github.GTNewHorizons:Baubles:1.0.1.14:dev') | ||
runtime('com.github.GTNewHorizons:Baubles:1.0.1.14:dev') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
// Add any additional repositories for your dependencies here | ||
|
||
repositories { | ||
maven { | ||
name 'GTNH Maven' | ||
url 'http://jenkins.usrv.eu:8081/nexus/content/groups/public/' | ||
allowInsecureProtocol | ||
} | ||
maven { | ||
name 'ic2' | ||
url 'https://maven.ic2.player.to/' | ||
metadataSources { | ||
mavenPom() | ||
artifact() | ||
} | ||
} | ||
maven { | ||
url 'https://cursemaven.com' | ||
content { | ||
includeGroup 'curse.maven' | ||
} | ||
} | ||
maven { | ||
url 'https://jitpack.io' | ||
} | ||
maven { | ||
name 'GTNH Maven' | ||
url 'http://jenkins.usrv.eu:8081/nexus/content/groups/public/' | ||
allowInsecureProtocol | ||
} | ||
maven { | ||
name 'ic2' | ||
url 'https://maven.ic2.player.to/' | ||
metadataSources { | ||
mavenPom() | ||
artifact() | ||
} | ||
} | ||
maven { | ||
url 'https://cursemaven.com' | ||
content { | ||
includeGroup 'curse.maven' | ||
} | ||
} | ||
maven { | ||
url 'https://jitpack.io' | ||
} | ||
} |
Oops, something went wrong.