Skip to content

Commit

Permalink
Merge pull request #17 from Wyvest/main
Browse files Browse the repository at this point in the history
fix modules not being added, update arch loom
  • Loading branch information
Deftu authored Dec 29, 2024
2 parents e9b4e65 + 1f5541a commit 109ef34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
kotlin("jvm") version("2.0.10")
`kotlin-dsl`
val dgtVersion = "2.5.0"
val dgtVersion = "2.14.0"
id("dev.deftu.gradle.tools.repo") version(dgtVersion)
id("dev.deftu.gradle.tools.configure") version(dgtVersion)
id("dev.deftu.gradle.tools.publishing.maven") version(dgtVersion)
Expand Down Expand Up @@ -38,7 +38,7 @@ dependencies {
implementation(kotlin("gradle-plugin"))

// Architectury Loom
implementation("gg.essential:architectury-loom:1.6.20")
implementation("gg.essential:architectury-loom:1.6.21")
implementation("dev.architectury:architectury-pack200:0.1.3")

// Preprocessing/multi-versioning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ class OneConfigBuilder {
var usePolyMixin = false
var polyMixinVersion: String? = null

internal val modules = setOf<String>()
internal val modules = mutableSetOf<String>()

operator fun String.unaryPlus() {
modules.plus(this)
modules.add(this)
}

operator fun String.unaryMinus() {
modules.minus(this)
modules.remove(this)
}

}

0 comments on commit 109ef34

Please sign in to comment.