push changes

This commit is contained in:
Ben Kerllenevich
2021-06-13 06:23:53 -04:00
parent 56453555b7
commit ef7f70f6f2
3 changed files with 21 additions and 12 deletions

View File

@@ -6,8 +6,24 @@ plugins {
id("io.papermc.paperweight.patcher") version "1.0.0-SNAPSHOT"
}
group = "net.pl3x.purpur"
version = providers.gradleProperty("projectVersion").forUseAtConfigurationTime().get()
repositories {
mavenCentral()
maven("https://wav.jfrog.io/artifactory/repo/") {
content {
onlyForConfigurations("paperclip")
}
}
maven("https://maven.quiltmc.org/repository/release/") {
content {
onlyForConfigurations("remapper")
}
}
}
dependencies {
remapper("org.quiltmc", "tiny-remapper", "0.4.1")
paperclip("io.papermc", "paperclip", "2.0.0-SNAPSHOT@jar")
}
subprojects {
apply(plugin = "java")
@@ -36,10 +52,6 @@ subprojects {
}
}
dependencies {
implementation(gradleApi())
}
val paperDir = layout.projectDirectory.dir("Paper")
val initSubmodules by tasks.registering {
outputs.upToDateWhen { false }