Skip to content

Commit

Permalink
fix(gradle): correct repos
Browse files Browse the repository at this point in the history
  • Loading branch information
danorris709 committed Aug 30, 2023
1 parent b31298e commit 3d4b935
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
21 changes: 12 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,20 @@ subprojects {

repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://repo.lucko.me/' }
maven { url = "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url = "https://repo.lucko.me/" }
maven { url = "https://repo.aikar.co/content/groups/aikar/" }
maven { url = "https://jitpack.io" }
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
maven {
name = 'MinecraftForge'
url = 'https://maven.minecraftforge.net/'
maven { url = "https://repo.spongepowered.org/maven" }
maven { url = "https://maven.envyware.co.uk/releases" }
ivy {
setUrl('https://download.nodecdn.net/containers/reforged/server/release')
metadataSources {
artifact()
}
patternLayout {
artifact('[revision]/[artifact].[ext]')
}
}
}

Expand Down
6 changes: 3 additions & 3 deletions forge20/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ dependencies {

implementation group: 'org.spongepowered', name: 'configurate-yaml', version: '4.0.0'

shadow group: 'com.envyful.api', name: 'commons', version: '5.0.2'
shadow (group: 'com.envyful.api', name: 'forge20', version: '5.0.2') {
shadow group: 'com.envyful.api', name: 'commons', version: '5.0.3'
shadow (group: 'com.envyful.api', name: 'forge20', version: '5.0.3') {
transitive = false;
}
shadow (group: 'com.envyful.api', name: 'reforged20', version: '5.0.2') {
shadow (group: 'com.envyful.api', name: 'reforged20', version: '5.0.3') {
transitive = false;
}
}
Expand Down

0 comments on commit 3d4b935

Please sign in to comment.