PhysicalConnectivity/plugin/mousewheelie/build.gradle

33 lines
619 B
Groovy
Raw Normal View History

2021-03-18 22:12:01 +00:00
plugins {
id "fabric-loom"
id "org.jetbrains.kotlin.jvm"
}
2021-12-22 23:59:51 +00:00
archivesBaseName = "PhyCon-Plugin-MouseWheelie"
2021-03-18 22:12:01 +00:00
version = project.mod_version
group = project.maven_group
repositories {
maven {
url = "https://maven.siphalor.de/"
}
2021-12-22 23:59:51 +00:00
maven {
url = "https://jitpack.io"
}
mavenCentral()
2021-03-18 22:12:01 +00:00
}
dependencies {
2021-12-22 23:59:51 +00:00
implementation(project(":")) {
transitive = false
}
2021-03-18 22:12:01 +00:00
2021-12-22 23:59:51 +00:00
modImplementation("de.siphalor:mousewheelie-1.18:${project.mousewheelie_version}") {
2021-03-18 22:12:01 +00:00
exclude group: "net.fabricmc"
exclude group: "net.fabricmc.fabric-api"
exclude module: "modmenu"
exclude group: "me.shedaniel.cloth"
}
}