mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 15:47:57 -05:00
32 lines
548 B
Groovy
32 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))
|
||
|
}
|
||
|
}
|
||
|
}
|