Skip to content
Merged
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
12 changes: 5 additions & 7 deletions paynow-bukkit-legacy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,17 @@ repositories {

maven {
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'

// As of Gradle 5.1, you can limit this to only those
// dependencies you expect from it
content {
includeGroup 'org.bukkit'
includeGroup 'org.spigotmc'
}
}

maven {
url = 'https://repo.papermc.io/repository/maven-public/'
}

}

dependencies {
compileOnly 'org.spigotmc:spigot-api:1.8-R0.1-SNAPSHOT'
compileOnly 'net.md-5:bungeecord-chat:1.8-SNAPSHOT'
shadow(implementation project(":paynow-lib"))
implementation group: 'com.google.code.gson', name: 'gson', version: '2.11.0'
}
Expand Down
12 changes: 5 additions & 7 deletions paynow-bukkit-modern/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,17 @@ repositories {

maven {
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'

// As of Gradle 5.1, you can limit this to only those
// dependencies you expect from it
content {
includeGroup 'org.bukkit'
includeGroup 'org.spigotmc'
}
}

maven {
url = 'https://repo.papermc.io/repository/maven-public/'
}

}

dependencies {
compileOnly 'org.spigotmc:spigot-api:1.13-R0.1-SNAPSHOT'
compileOnly 'net.md-5:bungeecord-chat:1.13-SNAPSHOT'
shadow(implementation project(":paynow-lib"))
implementation group: 'com.google.code.gson', name: 'gson', version: '2.11.0'
}
Expand Down
13 changes: 13 additions & 0 deletions paynow-bungeecord/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,23 @@ plugins {

repositories {
mavenCentral()

maven {
url = 'https://repo.papermc.io/repository/maven-public/'
}

maven {
url = 'https://libraries.minecraft.net/'
}

maven {
url = 'https://maven.elmakers.com/repository/'
}
}

dependencies {
compileOnly 'net.md-5:bungeecord-api:1.16-R0.4'
compileOnly 'net.md-5:brigadier:1.0.16-SNAPSHOT'
shadow(implementation project(":paynow-lib"))
}

Expand Down
Loading