mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-02-04 09:14:59 +01:00
23 lines
627 B
Groovy
23 lines
627 B
Groovy
dependencies {
|
|
modCompileOnly "net.fabricmc:fabric-loader:${fabric_loader_version}"
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
register('mavenJava', MavenPublication) {
|
|
from(components['java'])
|
|
artifactId = "flywheel-${project.name}-intermediary-${artifact_minecraft_version}"
|
|
}
|
|
register('mojmapJava', MavenPublication) {
|
|
artifact jar
|
|
artifact sourcesJar
|
|
artifactId = "flywheel-${project.name}-mojmap-${artifact_minecraft_version}"
|
|
}
|
|
}
|
|
}
|