forked from javaarchive/mcef-fabric
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c6daf0
commit 3d07a74
Showing
11 changed files
with
123 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
pluginManagement { | ||
repositories { | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
pluginManagement { | ||
repositories { | ||
//jcenter() // jcenter will be stopped in 2022 | ||
mavenCentral() | ||
maven { | ||
name = 'Fabric' | ||
url = 'https://maven.fabricmc.net/' | ||
} | ||
maven { url "https://maven.architectury.dev/" } | ||
maven { url "https://files.minecraftforge.net/maven/" } | ||
maven { | ||
name = 'Cotton' | ||
url = 'https://server.bbkr.space/artifactory/libs-release/' | ||
} | ||
gradlePluginPortal() | ||
} | ||
} | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
modLoader="javafml" #mandatory | ||
|
||
loaderVersion="[40,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. | ||
|
||
license="BSD-3-Clause" | ||
|
||
issueTrackerURL="" #optional | ||
|
||
[[mods]] #mandatory | ||
|
||
modId="forgecef" #mandatory | ||
|
||
version="1.0.0" #mandatory | ||
|
||
displayName="MCEF" #mandatory | ||
|
||
displayURL="https://github.com/Mysticpasta1/mcef-forge" #optional | ||
|
||
logoFile= "" #optional | ||
|
||
credits="" #optional | ||
|
||
authors="Mysticpasta1, WaterPicker, Montoyo, javaarchive" #optional | ||
|
||
description=''' | ||
''' | ||
|
||
[[dependencies.mcef]] #optional | ||
modId="forge" #mandatory | ||
mandatory=true #mandatory | ||
versionRange="[40,)" #mandatory | ||
ordering="NONE" | ||
side="BOTH" | ||
|
||
[[dependencies.mcef]] | ||
modId="minecraft" | ||
mandatory=true | ||
versionRange="[1.18.2,1.19)" | ||
ordering="NONE" | ||
side="BOTH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters