File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,7 @@ fun DependencyHandlerScope.setupConfigurations() {
3434 }
3535
3636 includeMod.dependencies.forEach {
37- modImplementation(it)
38- include(it)
37+ implementation(it)
3938 }
4039}
4140
@@ -44,10 +43,10 @@ dependencies {
4443 neoForge(" net.neoforged:neoforge:$neoVersion " )
4544
4645 // Add dependencies on the required Kotlin modules.
47- includeLib(" thedarkcolour:kotlinforforge: $kotlinForgeVersion " )
46+ // includeLib(... )
4847
4948 // Add mods to the mod jar
50- // includeMod(... )
49+ includeMod(" thedarkcolour:kotlinforforge-neoforge: $kotlinForgeVersion " )
5150
5251 // Common (Do not touch)
5352 common(project(" :common" , configuration = " namedElements" )) { isTransitive = false }
Original file line number Diff line number Diff line change @@ -13,20 +13,23 @@ displayTest = "IGNORE_ALL_VERSION"
1313
1414[[dependencies .lambda ]]
1515modId = " neoforge"
16+ mandatory = true
1617type = " required"
1718versionRange = " [20.2,)"
1819ordering = " NONE"
1920side = " CLIENT"
2021
2122[[dependencies .lambda ]]
2223modId = " minecraft"
24+ mandatory = true
2325type = " required"
2426versionRange = " [1.20.2,1.21)"
2527ordering = " NONE"
2628side = " CLIENT"
2729
2830[[dependencies .lambda ]]
2931modId = " kotlinforforge"
32+ mandatory = true
3033type = " required"
3134versionRange = " [4,)"
3235ordering = " AFTER"
You can’t perform that action at this time.
0 commit comments