Skip to content

Commit 7910919

Browse files
committed
fixed gradle, hopefully GH Action fixed as well
1 parent 13d60ff commit 7910919

File tree

7 files changed

+6
-7
lines changed

7 files changed

+6
-7
lines changed

bgfx/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.internal.os.OperatingSystem.*
22

3-
val moduleName = "$group.bgfx"
3+
val moduleName = "$group.${rootProject.name}.bgfx"
44

55
dependencies {
66

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import org.gradle.api.attributes.LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE
21
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
32
import java.net.URL
43

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.internal.os.OperatingSystem.*
22

3-
val moduleName = "$group.core"
3+
val moduleName = "$group.${rootProject.name}.core"
44

55
dependencies {
66

gl/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.internal.os.OperatingSystem.*
22

3-
val moduleName = "$group.gl"
3+
val moduleName = "$group.${rootProject.name}.gl"
44

55
dependencies {
66

glfw/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.internal.os.OperatingSystem.*
22

3-
val moduleName = "$group.glfw"
3+
val moduleName = "$group.${rootProject.name}.glfw"
44

55
dependencies {
66

openjfx/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.internal.os.OperatingSystem.*
22

3-
val moduleName = "$group.openjfx"
3+
val moduleName = "$group.${rootProject.name}.openjfx"
44

55
dependencies {
66

vk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.internal.os.OperatingSystem.*
22

3-
val moduleName = "$group.vk"
3+
val moduleName = "$group.${rootProject.name}.vk"
44

55
dependencies {
66

0 commit comments

Comments
 (0)