Compare commits
8 Commits
1.6.4a_dev
...
1.19.1_tmp
| Author | SHA1 | Date | |
|---|---|---|---|
| b1cbc99a40 | |||
| 8e4240ef9a | |||
| 131ba164cf | |||
| acc681c535 | |||
| 1a3f9b82c6 | |||
| ddd6b3b817 | |||
| 5f116f0ea7 | |||
| f00a1db9c2 |
@@ -0,0 +1,37 @@
|
||||
plugins {
|
||||
id "com.github.johnrengelman.shadow" version "7.1.0"
|
||||
}
|
||||
|
||||
configurations {
|
||||
common
|
||||
shadowMe
|
||||
implementation.extendsFrom shadowMe
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// Toml
|
||||
shadowMe("com.electronwill.night-config:toml:${rootProject.toml_version}") {}
|
||||
|
||||
// Compression
|
||||
common('org.tukaani:xz:1.9')
|
||||
common('org.apache.commons:commons-compress:1.21')
|
||||
shadowMe 'org.tukaani:xz:1.9'
|
||||
shadowMe 'org.apache.commons:commons-compress:1.21'
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
configurations = [project.configurations.shadowMe]
|
||||
relocate 'org.tukaani', 'shaded.tukaani'
|
||||
relocate 'org.apache.commons.compress', 'shaded.apache.commons.compress'
|
||||
relocate 'com.electronwill.nightconfig', 'shaded.electronwill.nightconfig'
|
||||
|
||||
relocate 'com.seibel.lod.common', 'fabric.com.seibel.lod.common'
|
||||
|
||||
classifier "dev-shadow"
|
||||
}
|
||||
|
||||
//remapJar {
|
||||
// input.set shadowJar.archiveFile
|
||||
// dependsOn shadowJar
|
||||
// classifier null
|
||||
//}
|
||||
@@ -40,5 +40,5 @@ public final class ModInfo
|
||||
/** Human readable version of NAME */
|
||||
public static final String READABLE_NAME = "Distant Horizons";
|
||||
public static final String API = "LodAPI";
|
||||
public static final String VERSION = "1.6.7a-dev";
|
||||
public static final String VERSION = "1.6.12a";
|
||||
}
|
||||
|
||||
@@ -24,7 +24,6 @@ import com.seibel.lod.core.handlers.dependencyInjection.IBindable;
|
||||
import com.seibel.lod.core.util.LodUtil;
|
||||
import com.seibel.lod.core.wrapperInterfaces.block.IBlockDetailWrapper;
|
||||
import com.seibel.lod.core.wrapperInterfaces.world.IBiomeWrapper;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
|
||||
/**
|
||||
* @author James Seibel
|
||||
|
||||
Reference in New Issue
Block a user