mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-24 04:50:30 -04:00
Fix missing natives
Closes <https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/12633>
This commit is contained in:
parent
308775205a
commit
797564d423
@ -1,4 +1,4 @@
|
||||
//version: 1676031737
|
||||
//version: 1676679815
|
||||
/*
|
||||
DO NOT CHANGE THIS FILE!
|
||||
Also, you may replace this file at any time if there is an update available.
|
||||
@ -677,7 +677,7 @@ dependencies {
|
||||
java17Dependencies("com.github.GTNewHorizons:lwjgl3ify:${lwjgl3ifyVersion}")
|
||||
}
|
||||
if (modId != 'hodgepodge') {
|
||||
java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.0.31')
|
||||
java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.0.35')
|
||||
}
|
||||
|
||||
java17PatchDependencies('net.minecraft:launchwrapper:1.15') {transitive = false}
|
||||
|
@ -1,9 +1,9 @@
|
||||
// Add your dependencies here
|
||||
|
||||
dependencies {
|
||||
shadeCompile name: 'OC-LuaJ', version: '20220907.1', ext: 'jar'
|
||||
shadeCompile name: 'OC-JNLua', version: '20220928.0', ext: 'jar'
|
||||
shadeCompile name: 'OC-JNLua-Natives', version: '20220928.0', ext: 'jar'
|
||||
shadowImplementation name: 'OC-LuaJ', version: '20220907.1', ext: 'jar'
|
||||
shadowImplementation name: 'OC-JNLua', version: '20220928.0', ext: 'jar'
|
||||
shadowImplementation name: 'OC-JNLua-Natives', version: '20220928.0', ext: 'jar'
|
||||
|
||||
compile("com.google.code.findbugs:jsr305:3.0.2")
|
||||
|
||||
|
@ -58,6 +58,11 @@ containsMixinsAndOrCoreModOnly = false
|
||||
# If enabled, you may use 'shadowImplementation' for dependencies. They will be integrated in your jar. It is your
|
||||
# responsibility check the licence and request permission for distribution, if required.
|
||||
usesShadowedDependencies = true
|
||||
# If disabled, won't remove unused classes from shaded dependencies. Some libraries use reflection to access
|
||||
# their own classes, making the minimization unreliable.
|
||||
minimizeShadowedDependencies = false
|
||||
# If disabled, won't rename the shadowed classes.
|
||||
relocateShadowedDependencies = false
|
||||
|
||||
# Optional parameter to customize the produced artifacts. Use this to preserver artifact naming when migrating older
|
||||
# projects. New projects should not use this parameter.
|
||||
|
Loading…
x
Reference in New Issue
Block a user