mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-25 00:58:17 -05:00
679aae3c9a
* feat: add fabric-api-bom and fabric-api-catalog * spotlessApply * Apply suggestions from code review Co-authored-by: Juuz <6596629+Juuxel@users.noreply.github.com> --------- Co-authored-by: modmuss <modmuss50@gmail.com> Co-authored-by: Juuz <6596629+Juuxel@users.noreply.github.com>
31 lines
548 B
Groovy
31 lines
548 B
Groovy
plugins {
|
|
id 'java-platform'
|
|
}
|
|
|
|
version = rootProject.version
|
|
|
|
publishing.publications {
|
|
register('mavenJava', MavenPublication) {
|
|
from(components['javaPlatform'])
|
|
}
|
|
}
|
|
|
|
tasks.withType(GenerateModuleMetadata) {
|
|
// todo: RemoteSignJar fails when this is false (as set by parent build script)
|
|
enabled = true
|
|
}
|
|
|
|
dependencies {
|
|
constraints {
|
|
for (proj in rootProject.allprojects) {
|
|
if (proj == project) { // the bom itself
|
|
continue
|
|
}
|
|
if (proj.name == 'fabric-api-catalog') {
|
|
continue
|
|
}
|
|
|
|
api(project(proj.path))
|
|
}
|
|
}
|
|
}
|