2024-04-22 20:51:28 +02:00
|
|
|
plugins {
|
2024-04-25 19:37:12 +02:00
|
|
|
id 'flywheel.platform'
|
2024-04-22 20:51:28 +02:00
|
|
|
}
|
|
|
|
|
2024-04-17 21:05:04 +02:00
|
|
|
loom {
|
2024-04-19 02:12:13 +02:00
|
|
|
forge {
|
2024-04-22 02:15:21 +02:00
|
|
|
mixinConfig 'flywheel.backend.mixins.json'
|
|
|
|
mixinConfig 'flywheel.impl.mixins.json'
|
|
|
|
mixinConfig 'flywheel.impl.sodium.mixins.json'
|
2024-04-19 02:12:13 +02:00
|
|
|
}
|
|
|
|
|
2024-04-17 21:05:04 +02:00
|
|
|
runs {
|
|
|
|
configureEach {
|
|
|
|
property 'forge.logging.markers', ''
|
|
|
|
property 'forge.logging.console.level', 'debug'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
forge "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
|
|
|
|
2024-04-22 02:15:21 +02:00
|
|
|
modCompileOnly "maven.modrinth:embeddium:${embeddium_version}"
|
|
|
|
modCompileOnly "maven.modrinth:oculus:${oculus_version}"
|
2024-04-17 21:05:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
register('mavenJava', MavenPublication) {
|
2024-04-22 02:15:21 +02:00
|
|
|
from(components['java'])
|
2024-04-23 09:14:19 +02:00
|
|
|
artifactId = "flywheel-${project.name}-${artifact_minecraft_version}"
|
2024-04-17 21:05:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|