Skip to content

Commit 338b7c9

Browse files
committed
Update javacpp, 🔖 4.2.0_2
1 parent 174c4a1 commit 338b7c9

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

build.gradle.kts

+19-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "us.ihmc"
7-
version = "4.2.0_1"
7+
version = "4.2.0_2"
88

99
repositories {
1010
mavenCentral()
@@ -36,22 +36,33 @@ publishing {
3636
}
3737

3838
dependencies {
39-
testImplementation(platform("org.junit:junit-bom:5.9.1"))
40-
testImplementation("org.junit.jupiter:junit-jupiter")
41-
4239
// Transitive dependencies
43-
api("org.bytedeco:javacpp:1.5.10") {
40+
api("us.ihmc:javacpp:1.5.11-ihmc-2") {
4441
isTransitive = true
4542
}
46-
api("org.bytedeco:cuda:12.3-8.9-1.5.10") {
43+
api("us.ihmc:cuda:12.6-9.5-1.5.11-ihmc-2") {
4744
isTransitive = true
4845
}
4946
api("us.ihmc:ihmc-native-library-loader:2.0.2") {
5047
isTransitive = true
5148
}
5249

53-
// JavaCV/OpenCV for demos
54-
testImplementation("org.bytedeco:javacv-platform:1.5.10")
50+
testImplementation(platform("org.junit:junit-bom:5.9.1"))
51+
testImplementation("org.junit.jupiter:junit-jupiter")
52+
53+
// OpenCV for demos
54+
val openblasVersion = "0.3.28-1.5.11-ihmc-2"
55+
testImplementation("us.ihmc:openblas:$openblasVersion")
56+
testImplementation("us.ihmc:openblas:$openblasVersion:linux-x86_64")
57+
testImplementation("us.ihmc:openblas:$openblasVersion:linux-arm64")
58+
testImplementation("us.ihmc:openblas:$openblasVersion:windows-x86_64")
59+
val opencvVersion = "4.10.0-1.5.11-ihmc-2"
60+
testImplementation("us.ihmc:opencv:$opencvVersion")
61+
testImplementation("us.ihmc:opencv:$opencvVersion:linux-arm64")
62+
testImplementation("us.ihmc:opencv:$opencvVersion:linux-x86_64")
63+
testImplementation("us.ihmc:opencv:$opencvVersion:linux-x86_64-gpu")
64+
testImplementation("us.ihmc:opencv:$opencvVersion:windows-x86_64")
65+
testImplementation("us.ihmc:opencv:$opencvVersion:windows-x86_64-gpu")
5566
}
5667

5768
tasks.test {

0 commit comments

Comments
 (0)