Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-14 03:50:06 +01:00
Specify mainCapabilityAttribute for paper-api
Dieser Commit ist enthalten in:
Ursprung
b711764991
Commit
2e76d3f1e2
@ -11,7 +11,7 @@ import kotlin.io.path.*
|
||||
plugins {
|
||||
java
|
||||
`maven-publish`
|
||||
id("io.papermc.paperweight.core") version "1.7.3"
|
||||
id("io.papermc.paperweight.core") version "1.7.4"
|
||||
}
|
||||
|
||||
allprojects {
|
||||
|
@ -6,7 +6,7 @@ Subject: [PATCH] Brigadier based command API
|
||||
Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||
|
||||
diff --git a/build.gradle.kts b/build.gradle.kts
|
||||
index 6c8464d9e862b1b4dbf7a77e25446aa870803dae..e7c96be769fde8375b9a1b128cc7ce474144d16d 100644
|
||||
index 6c8464d9e862b1b4dbf7a77e25446aa870803dae..254fd96d3950b4494c7e43547b00b5175ee53c93 100644
|
||||
--- a/build.gradle.kts
|
||||
+++ b/build.gradle.kts
|
||||
@@ -27,6 +27,7 @@ configurations.api {
|
||||
@ -17,18 +17,22 @@ index 6c8464d9e862b1b4dbf7a77e25446aa870803dae..e7c96be769fde8375b9a1b128cc7ce47
|
||||
// api dependencies are listed transitively to API consumers
|
||||
api("com.google.guava:guava:32.1.2-jre")
|
||||
api("com.google.code.gson:gson:2.10.1")
|
||||
@@ -93,9 +94,29 @@ sourceSets {
|
||||
@@ -93,9 +94,33 @@ sourceSets {
|
||||
}
|
||||
}
|
||||
// Paper end
|
||||
+// Paper start - brigadier API
|
||||
+val outgoingVariants = arrayOf("runtimeElements", "apiElements", "sourcesElements", "javadocElements")
|
||||
+val mainCapability = "${project.group}:${project.name}:${project.version}"
|
||||
+configurations {
|
||||
+ val outgoing = outgoingVariants.map { named(it) }
|
||||
+ for (config in outgoing) {
|
||||
+ config {
|
||||
+ attributes {
|
||||
+ attribute(io.papermc.paperweight.util.mainCapabilityAttribute, mainCapability)
|
||||
+ }
|
||||
+ outgoing {
|
||||
+ capability("${project.group}:${project.name}:${project.version}")
|
||||
+ capability(mainCapability)
|
||||
+ capability("io.papermc.paper:paper-mojangapi:${project.version}")
|
||||
+ capability("com.destroystokyo.paper:paper-mojangapi:${project.version}")
|
||||
+ }
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren