Drop support for LiteLoader.

Liteloader is obsolete and abandoned. It is not worth the hassle of maintenance.
This commit is contained in:
Daniel Scalzi
2022-02-04 19:17:17 -05:00
parent f70c7b6802
commit 2f143d74a7
9 changed files with 6 additions and 175 deletions

View File

@@ -8,9 +8,6 @@ export class LibRepoStructure extends BaseMavenRepo {
public static readonly FORGE_GROUP = 'net.minecraftforge'
public static readonly FORGE_ARTIFACT = 'forge'
public static readonly LITELOADER_GROUP = 'com.mumfrey'
public static readonly LITELOADER_ARTIFACT = 'liteloader'
constructor(
absoluteRoot: string,
relativeRoot: string
@@ -29,11 +26,4 @@ export class LibRepoStructure extends BaseMavenRepo {
version, classifier, 'jar')
}
public getLocalLiteLoader(version: string, classifier?: string): string {
return this.getArtifactByComponents(
LibRepoStructure.LITELOADER_GROUP,
LibRepoStructure.LITELOADER_ARTIFACT,
version, classifier, 'jar')
}
}