Skip to content

Commit

Permalink
Removed Phosphor due to the maven site used for the internal dependen…
Browse files Browse the repository at this point in the history
…cy going offline. This caused the mod to be un-buildable.
  • Loading branch information
bconlon committed Nov 11, 2021
1 parent afba695 commit e838fc8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
1 change: 0 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ build:
paths:
- .gradle
- lib/OrbisAPI/.gradle
- lib/Phosphor/.gradle
script:
- export SIGN_BUILD=true
- ./gradlew build
Expand Down
14 changes: 1 addition & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,10 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'maven-publish'

def isPhosphorSubmodule = findProject(":Phosphor") != null

repositories {
mavenCentral()

maven { url = 'https://repo.spongepowered.org/maven' }
maven { url = 'https://repo.gildedgames.com/maven' }
}

configurations {
Expand All @@ -29,13 +26,6 @@ configurations {
}

dependencies {
if (isPhosphorSubmodule) {
runtime project(':phosphor')
} else {
runtime "me.jellysquid.mods:phosphor:${phosphor_version}:dev"
shaded "me.jellysquid.mods:phosphor:${phosphor_version}:universal"
}

compile project(":orbis-lib")
shaded project(":orbis-lib")
}
Expand Down Expand Up @@ -97,9 +87,7 @@ minecraft {

runDir = "run"

def plugin = "me.jellysquid.mods.phosphor.core.PhosphorFMLLoadingPlugin"

clientJvmArgs = serverJvmArgs += "-Dfml.coreMods.load=$plugin"
clientJvmArgs = serverJvmArgs
}

processResources {
Expand Down

0 comments on commit e838fc8

Please sign in to comment.