mirror of
https://github.com/zaaarf/lillero-loader.git
synced 2024-11-13 01:19:18 +01:00
updated to lillero 0.3
This commit is contained in:
parent
518cd50de0
commit
ef1e358a40
3 changed files with 19 additions and 30 deletions
34
README.md
34
README.md
|
@ -34,22 +34,22 @@ Go to the version folder corresponding to the instance you want to install this
|
|||
{
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"sha1": "6c47486b1045652bbbf9d684e971441106a70c3b",
|
||||
"size": 16951,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/0.2.2/lll-0.2.2.jar"
|
||||
"sha1": "12a2623a62416575315543b488ab348f41401a6d",
|
||||
"size": 25006,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/0.3.0/lll-0.3.0.jar"
|
||||
}
|
||||
},
|
||||
"name": "ftbsc:lll:0.2.2"
|
||||
"name": "ftbsc:lll:0.3.0"
|
||||
},
|
||||
{
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"sha1": "a11968731cb3400535bde46b387b8e7f9375bb5b",
|
||||
"size": 4779,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/loader/0.1.2/loader-0.1.2.jar"
|
||||
"sha1": "71c8bd92b4aaab8f9b6bdd639e115b01d7060cb3",
|
||||
"size": 4667,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/loader/0.1.3/loader-0.1.3.jar"
|
||||
}
|
||||
},
|
||||
"name": "ftbsc.lll:loader:0.1.2"
|
||||
"name": "ftbsc.lll:loader:0.1.3"
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -65,26 +65,26 @@ Select and edit your target instance and go into the "Version" tab. Click "Add e
|
|||
{
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"sha1": "2e1c8a08d553b244d1020ab1a2568b9253ceb1c4",
|
||||
"size": 16297,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/0.2.0/lll-0.2.0.jar"
|
||||
"sha1": "12a2623a62416575315543b488ab348f41401a6d",
|
||||
"size": 25006,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/0.3.0/lll-0.3.0.jar"
|
||||
}
|
||||
},
|
||||
"name": "ftbsc:lll:0.2.0"
|
||||
"name": "ftbsc:lll:0.3.0"
|
||||
},
|
||||
{
|
||||
"downloads": {
|
||||
"artifact": {
|
||||
"sha1": "a11968731cb3400535bde46b387b8e7f9375bb5b",
|
||||
"size": 4779,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/loader/0.1.2/loader-0.1.2.jar"
|
||||
"sha1": "71c8bd92b4aaab8f9b6bdd639e115b01d7060cb3",
|
||||
"size": 4667,
|
||||
"url": "https://maven.fantabos.co/ftbsc/lll/loader/0.1.3/loader-0.1.3.jar"
|
||||
}
|
||||
},
|
||||
"name": "ftbsc.lll:loader:0.1.2"
|
||||
"name": "ftbsc.lll:loader:0.1.3"
|
||||
}
|
||||
],
|
||||
"name": "Lillero",
|
||||
"uid": "ftbsc.lll",
|
||||
"version": "0.2"
|
||||
"version": "0.3"
|
||||
}
|
||||
```
|
||||
|
|
13
build.gradle
13
build.gradle
|
@ -1,6 +1,5 @@
|
|||
plugins {
|
||||
id 'java-library'
|
||||
// id 'com.github.johnrengelman.shadow' version '7.1.2'
|
||||
}
|
||||
|
||||
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
||||
|
@ -16,16 +15,6 @@ dependencies {
|
|||
implementation 'org.apache.logging.log4j:log4j-core:2.15.0'
|
||||
implementation 'org.ow2.asm:asm-commons:9.4'
|
||||
implementation 'cpw.mods:modlauncher:8.1.3'
|
||||
implementation 'ftbsc:lll:0.2.2'
|
||||
implementation 'ftbsc:lll:0.3.0'
|
||||
}
|
||||
|
||||
// jar {
|
||||
// dependsOn shadowJar
|
||||
// }
|
||||
|
||||
// shadowJar {
|
||||
// dependencies {
|
||||
// include dependency(group: 'ftbsc', name: 'lll', version: '0.0.3')
|
||||
// }
|
||||
// archiveClassifier.set("all")
|
||||
// }
|
||||
|
|
|
@ -3,7 +3,7 @@ package ftbsc.lll.loader;
|
|||
import cpw.mods.modlauncher.serviceapi.ILaunchPluginService;
|
||||
|
||||
import ftbsc.lll.IInjector;
|
||||
import ftbsc.lll.exception.InjectionException;
|
||||
import ftbsc.lll.exceptions.InjectionException;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
|
Loading…
Reference in a new issue