Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Forge maven URL and provide instructions on how to build #5535

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@ enderio-base/\.checkstyle

**/Corel Auto-Preserve/

## EnderCore lib

/lib/EnderCore*deobf.jar
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,11 @@ Below sounds are used under [CC BY 3.0](https://creativecommons.org/licenses/by/
- https://freesound.org/people/LiamG_SFX/
- https://freesound.org/people/kuchenanderung1/
- https://freesound.org/people/170048@virtualwindow.co.za/

### How to compile

1. Clone this repository.
2. Download the matching EnderCore deobf jar from https://maven.tterrag.com/ and place it in `lib`.
3. Duplicate `user.properties.example` and rename it to `user.properties` in the root folder of this repository.
4. `./gradlew setupDecompWorkspace`
5. `./gradlew build`
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
url = "https://maven.minecraftforge.net/"
}
maven {
url "https://plugins.gradle.org/m2/"
Expand Down Expand Up @@ -104,7 +104,7 @@ allprojects {
maven { url = "http://maven.tterrag.com" }
maven { url = "http://maven2.tterrag.com" }
maven { url = "http://dvs1.progwml6.com/files/maven" }
maven { url = "http://files.minecraftforge.net/maven" }
maven { url = "https://maven.minecraftforge.net" }
maven { url = "http://maven.cil.li/" } // OpenComputers
maven { url = "http://maven.ic2.player.to" }
maven { url = "https://maven.mcmoddev.com" } // ???, dead as of 2021-01-10, back as of 2021-05-24
Expand All @@ -117,7 +117,7 @@ allprojects {
maven { url = "https://www.cursemaven.com" } // Mekanism
//maven { url = "https://repo.raoulvdberge.com/" } // Refined Storage (new)
//maven { url = "https://repo.refinedmods.com/" } // Refined Storage (double-plus new)
maven { url = "https://maven.hypherionmc.me/" } // our backups for vanished sources
maven { url = "https://maven.hypherionmc.me/releases" } // our backups for vanished sources
// maven { url = "https://modmaven.dev/" } // appeng etc. but mostly 1.16 stuff
mavenLocal()
}
Expand Down