Skip to content

Commit d4877e9

Browse files
committed
add explicity dependencies to compileJava task to avoid deprecation errors in Gradle 8
1 parent 6b9f12b commit d4877e9

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

mode/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ task copyToLib(type: Copy) {
3030
into "mode"
3131
}
3232
build.dependsOn(copyToLib)
33+
compileJava.dependsOn(copyToLib)
3334

3435
sourceSets {
3536
main {

mode/tools/SDKUpdater/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ task copyToLib(type: Copy) {
3131
into "lib"
3232
}
3333
build.dependsOn(copyToLib)
34+
compileJava.dependsOn(':mode:copyToLib')
3435

3536
sourceSets {
3637
main {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include ':core', ':mode', ':mode:libraries:vr', ':mode:libraries:ar', 'mode:tools:SDKUpdater'
1+
include ':mode', ':core', ':mode:libraries:vr', ':mode:libraries:ar', 'mode:tools:SDKUpdater'
22

0 commit comments

Comments
 (0)