There was an error while loading. Please reload this page.
1 parent 4d64120 commit eeafaa5Copy full SHA for eeafaa5
1 file changed
build.gradle.kts
@@ -1,3 +1,5 @@
1
+import org.jetbrains.kotlin.gradle.plugin.mpp.pm20.util.archivesName
2
+
3
plugins {
4
kotlin("jvm") version "1.9.0"
5
`maven-publish`
@@ -10,6 +12,7 @@ plugins {
10
12
val archivesBaseName = project.property("archives_base_name").toString()
11
13
group = project.property("maven_group")!!
14
version = "${project.property("mod_version")}-rev.${grgit.head().abbreviatedId}"
15
+archivesName.set(property("archives_base_name")!! as String)
16
17
repositories {
18
maven { url = uri("https://maven.terraformersmc.com") }
@@ -35,6 +38,8 @@ dependencies {
35
38
//Mods
36
39
modImplementation(libs.bundles.dependencies)
37
40
modLocalRuntime(libs.bundles.dev.mods)
41
42
+ include(modImplementation("net.devtech:arrp:0.6.7")!!)
43
}
44
45
// Write the version to the fabric.mod.json
0 commit comments