mirror of
https://github.com/unmojang/meta.git
synced 2025-09-28 21:52:20 -04:00
15 lines
469 B
Python
15 lines
469 B
Python
from os.path import join
|
|
|
|
from ..model import GradleSpecifier, make_launcher_library
|
|
|
|
BASE_DIR = "neoforge"
|
|
|
|
JARS_DIR = join(BASE_DIR, "jars")
|
|
INSTALLER_INFO_DIR = join(BASE_DIR, "installer_info")
|
|
INSTALLER_MANIFEST_DIR = join(BASE_DIR, "installer_manifests")
|
|
VERSION_MANIFEST_DIR = join(BASE_DIR, "version_manifests")
|
|
FILE_MANIFEST_DIR = join(BASE_DIR, "files_manifests")
|
|
DERIVED_INDEX_FILE = join(BASE_DIR, "derived_index.json")
|
|
|
|
NEOFORGE_COMPONENT = "net.neoforged"
|