Skip to content

Commit 066bc36

Browse files
committed
updated to librealsense 2.50.0 and gradle 7
1 parent 86ea129 commit 066bc36

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Intel RealSense Java [![](https://jitpack.io/v/cansik/librealsense-java.svg)](https://jitpack.io/#cansik/librealsense-java)
22
Intel® RealSense™ SDK 2 wrapper for Java.
33

4-
Supported version: `v2.44.0`
4+
Supported version: `v2.50.0`
55

66
Following binaries are pre-compiled within the release jar:
77

@@ -11,7 +11,7 @@ Following binaries are pre-compiled within the release jar:
1111

1212
#### Important ⚠️
1313
- The library is still under development
14-
- Not all methods have been ported yet to fully support `2.44.0` through the high level API
14+
- Not all methods have been ported yet to fully support `2.50.0` through the high level API
1515

1616
### Gradle / Maven
1717
Include the library directly into your gradle / maven build by using [jitpack](https://jitpack.io/#cansik/librealsense-java).
@@ -22,7 +22,7 @@ repositories {
2222
}
2323
2424
dependencies {
25-
implementation 'com.github.cansik:librealsense-java:2.44.0-0.4.3'
25+
implementation 'com.github.cansik:librealsense-java:2.50.0-0.5.0'
2626
}
2727
```
2828

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group 'org.intel.rs'
6-
version '2.44.0-0.4.3'
6+
version '2.50.0-0.5.0'
77

88
sourceCompatibility = 1.8
99

@@ -12,17 +12,17 @@ repositories {
1212
}
1313

1414
dependencies {
15-
testCompile group: 'junit', name: 'junit', version: '4.12'
15+
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
1616

1717
// processing
18-
testCompile group: 'org.processing', name: 'core', version: '3.3.7'
18+
testImplementation group: 'org.processing', name: 'core', version: '3.3.7'
1919

2020
// java cpp
21-
compile group: 'org.bytedeco', name: 'javacpp', version: '1.5.6'
21+
implementation group: 'org.bytedeco', name: 'javacpp', version: '1.5.7'
2222

2323
// librealsense2
24-
compile group: 'org.bytedeco', name: 'librealsense2', version: '2.44.0-1.5.6'
25-
compile group: 'org.bytedeco', name: 'librealsense2-platform', version: '2.44.0-1.5.6'
24+
implementation group: 'org.bytedeco', name: 'librealsense2', version: '2.50.0-1.5.7'
25+
implementation group: 'org.bytedeco', name: 'librealsense2-platform', version: '2.50.0-1.5.7'
2626
}
2727

2828
task fatJar(type: Jar) {

gradle/wrapper/gradle-wrapper.jar

4.52 KB
Binary file not shown.
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Tue Aug 20 12:23:54 CEST 2019
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
31
distributionBase=GRADLE_USER_HOME
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
64
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)