Skip to content

Commit c7401ac

Browse files
committed
Fix build scripts to correctly package all jars with Gradle 7
1 parent db9fb8d commit c7401ac

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/osh-base/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ distributions {
2222
from 'web'
2323
}
2424
into('lib') {
25-
from project.configurations.compileClasspath
25+
from project.configurations.runtimeClasspath
2626
}
2727
}
2828
}

dist/osh-rpi-geocam/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ distributions {
2626
from 'web'
2727
}
2828
into('lib') {
29-
from project.configurations.compileClasspath
29+
from project.configurations.runtimeClasspath
3030
}
3131
}
3232
}

dist/osh-sensiasoft/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ distributions {
3232
from 'web'
3333
}
3434
into('lib') {
35-
from project.configurations.compileClasspath
35+
from project.configurations.runtimeClasspath
3636
}
3737
}
3838
}

0 commit comments

Comments
 (0)