@@ -4,7 +4,7 @@ plugins {
4
4
}
5
5
6
6
group = " us.ihmc"
7
- version = " 4.2.0_1 "
7
+ version = " 4.2.0_2 "
8
8
9
9
repositories {
10
10
mavenCentral()
@@ -36,22 +36,33 @@ publishing {
36
36
}
37
37
38
38
dependencies {
39
- testImplementation(platform(" org.junit:junit-bom:5.9.1" ))
40
- testImplementation(" org.junit.jupiter:junit-jupiter" )
41
-
42
39
// Transitive dependencies
43
- api(" org.bytedeco :javacpp:1.5.10 " ) {
40
+ api(" us.ihmc :javacpp:1.5.11-ihmc-2 " ) {
44
41
isTransitive = true
45
42
}
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 " ) {
47
44
isTransitive = true
48
45
}
49
46
api(" us.ihmc:ihmc-native-library-loader:2.0.2" ) {
50
47
isTransitive = true
51
48
}
52
49
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" )
55
66
}
56
67
57
68
tasks.test {
0 commit comments