mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 15:00:13 +01:00
Add capabilities for old API coordinates
This will cause Gradle to throw a selection error when for example paper-api and spigot-api are on the classpath. Users will need to add selection rules or excludes for certain transitive deps to solve this rather than build with a broken classpath.
This commit is contained in:
parent
051ab9117a
commit
a18b1b7ef1
1 changed files with 5 additions and 0 deletions
|
@ -121,8 +121,13 @@ configurations {
|
||||||
}
|
}
|
||||||
outgoing {
|
outgoing {
|
||||||
capability(mainCapability)
|
capability(mainCapability)
|
||||||
|
// Paper-MojangAPI has been merged into Paper-API
|
||||||
capability("io.papermc.paper:paper-mojangapi:${project.version}")
|
capability("io.papermc.paper:paper-mojangapi:${project.version}")
|
||||||
capability("com.destroystokyo.paper:paper-mojangapi:${project.version}")
|
capability("com.destroystokyo.paper:paper-mojangapi:${project.version}")
|
||||||
|
// Conflict with old coordinates
|
||||||
|
capability("com.destroystokyo.paper:paper-api:${project.version}")
|
||||||
|
capability("org.spigotmc:spigot-api:${project.version}")
|
||||||
|
capability("org.bukkit:bukkit:${project.version}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue