Skip to content

Commit aee2c1e

Browse files
Merge pull request #168 from mavlink/prepare-release-2.1.0
Prepare release 2.1.0
2 parents ef48590 + 064dd1a commit aee2c1e

File tree

5 files changed

+9
-35
lines changed

5 files changed

+9
-35
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ MAVSDK-Java is distributed through MavenCentral, meaning that it can be imported
1919
```
2020
dependencies {
2121
...
22-
implementation 'io.mavsdk:mavsdk:2.0.1'
22+
implementation 'io.mavsdk:mavsdk:2.1.0'
2323
...
2424
}
2525
```
@@ -29,8 +29,8 @@ For Android, `mavsdk_server` is distributed as an Android library (`aar`):
2929
```
3030
dependencies {
3131
...
32-
implementation 'io.mavsdk:mavsdk:2.0.1'
33-
implementation 'io.mavsdk:mavsdk-server:2.0.0'
32+
implementation 'io.mavsdk:mavsdk:2.1.0'
33+
implementation 'io.mavsdk:mavsdk-server:2.1.0'
3434
...
3535
}
3636
```

mavsdk_server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ android {
123123

124124
archivesBaseName = 'mavsdk-server'
125125
group = 'io.mavsdk'
126-
versionCode 2
127-
version '2.0.1'
126+
versionCode 3
127+
version '2.1.0'
128128

129129
ndk {
130130
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'

sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Because it is deployed on Maven Central, adding MAVSDK-Java to your project is a
88

99
```groovy
1010
dependencies {
11-
implementation 'io.mavsdk:mavsdk:2.0.1'
11+
implementation 'io.mavsdk:mavsdk:2.1.0'
1212
}
1313
```
1414

sdk/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subprojects {
1818

1919
group = 'io.mavsdk'
2020
archivesBaseName = 'mavsdk'
21-
version = '2.0.1'
21+
version = '2.1.0'
2222

2323
repositories {
2424
jcenter()
@@ -85,8 +85,8 @@ subprojects {
8585
}
8686
}
8787

88-
tasks.withType(Copy).all {
89-
duplicatesStrategy 'include'
88+
tasks.withType(Jar).all {
89+
duplicatesStrategy = DuplicatesStrategy.INCLUDE
9090
}
9191

9292
java {

sdk/mavsdk/src/main/java/io/mavsdk/System.java

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import io.mavsdk.action_server.ActionServer;
55
import io.mavsdk.calibration.Calibration;
66
import io.mavsdk.camera.Camera;
7-
import io.mavsdk.component_information.ComponentInformation;
8-
import io.mavsdk.component_information_server.ComponentInformationServer;
97
import io.mavsdk.core.Core;
108
import io.mavsdk.failure.Failure;
119
import io.mavsdk.follow_me.FollowMe;
@@ -27,7 +25,6 @@
2725
import io.mavsdk.shell.Shell;
2826
import io.mavsdk.telemetry.Telemetry;
2927
import io.mavsdk.telemetry_server.TelemetryServer;
30-
import io.mavsdk.tracking_server.TrackingServer;
3128
import io.mavsdk.transponder.Transponder;
3229
import io.mavsdk.tune.Tune;
3330
import io.reactivex.annotations.NonNull;
@@ -38,8 +35,6 @@ public class System {
3835
private final LazyPlugin<ActionServer> actionServer;
3936
private final LazyPlugin<Calibration> calibration;
4037
private final LazyPlugin<Camera> camera;
41-
private final LazyPlugin<ComponentInformation> componentInformation;
42-
private final LazyPlugin<ComponentInformationServer> componentInformationServer;
4338
private final LazyPlugin<Core> core;
4439
private final LazyPlugin<Failure> failure;
4540
private final LazyPlugin<FollowMe> followMe;
@@ -60,7 +55,6 @@ public class System {
6055
private final LazyPlugin<Shell> shell;
6156
private final LazyPlugin<Telemetry> telemetry;
6257
private final LazyPlugin<TelemetryServer> telemetryServer;
63-
private final LazyPlugin<TrackingServer> trackingServer;
6458
private final LazyPlugin<Transponder> transponder;
6559
private final LazyPlugin<Tune> tune;
6660

@@ -86,8 +80,6 @@ public System(@NonNull String host, int port) {
8680
actionServer = LazyPlugin.from(() -> new ActionServer(host, port));
8781
calibration = LazyPlugin.from(() -> new Calibration(host, port));
8882
camera = LazyPlugin.from(() -> new Camera(host, port));
89-
componentInformation = LazyPlugin.from(() -> new ComponentInformation(host, port));
90-
componentInformationServer = LazyPlugin.from(() -> new ComponentInformationServer(host, port));
9183
core = LazyPlugin.from(() -> new Core(host, port));
9284
failure = LazyPlugin.from(() -> new Failure(host, port));
9385
followMe = LazyPlugin.from(() -> new FollowMe(host, port));
@@ -108,7 +100,6 @@ public System(@NonNull String host, int port) {
108100
shell = LazyPlugin.from(() -> new Shell(host, port));
109101
telemetry = LazyPlugin.from(() -> new Telemetry(host, port));
110102
telemetryServer = LazyPlugin.from(() -> new TelemetryServer(host, port));
111-
trackingServer = LazyPlugin.from(() -> new TrackingServer(host, port));
112103
transponder = LazyPlugin.from(() -> new Transponder(host, port));
113104
tune = LazyPlugin.from(() -> new Tune(host, port));
114105
}
@@ -133,16 +124,6 @@ public Camera getCamera() {
133124
return camera.get();
134125
}
135126

136-
@NonNull
137-
public ComponentInformation getComponentInformation() {
138-
return componentInformation.get();
139-
}
140-
141-
@NonNull
142-
public ComponentInformationServer getComponentInformationServer() {
143-
return componentInformationServer.get();
144-
}
145-
146127
@NonNull
147128
public Core getCore() {
148129
return core.get();
@@ -243,10 +224,6 @@ public TelemetryServer getTelemetryServer() {
243224
return telemetryServer.get();
244225
}
245226

246-
@NonNull
247-
public TrackingServer getTrackingServer() {
248-
return trackingServer.get();
249-
}
250227

251228
@NonNull
252229
public Transponder getTransponder() {
@@ -266,8 +243,6 @@ public void dispose() {
266243
actionServer.dispose();
267244
calibration.dispose();
268245
camera.dispose();
269-
componentInformation.dispose();
270-
componentInformationServer.dispose();
271246
core.dispose();
272247
failure.dispose();
273248
followMe.dispose();
@@ -288,7 +263,6 @@ public void dispose() {
288263
shell.dispose();
289264
telemetry.dispose();
290265
telemetryServer.dispose();
291-
trackingServer.dispose();
292266
transponder.dispose();
293267
tune.dispose();
294268
}

0 commit comments

Comments
 (0)