Skip to content
This repository was archived by the owner on Oct 21, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,9 @@
/data/target/
/samples/mqtt/target/
/.license
/management/src/main/proto/
/management/src/main/proto/
/samples/account/target/
/samples/samples-account/target/
/data/data-common/target/
/samples/ttnmgmt/target/
/samples/samples-management/target/
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ This is the Java SDK for [The Things Network](https://www.thethingsnetwork.org)

## Modules

- **[WIP]** [Account](account) - Interact with The Things Network account server
- **[WIP]** [Management](management) - Interact with The Things Network Handler via the API
- **[WIP]** [Data AMQP](data/amqp) - Subscribe to Things Network Handler to send/receive data via AMQP
- [Account](account) - Interact with The Things Network account server
- [Management](management) - Interact with The Things Network Handler via the API
- [Data AMQP](data/amqp) - Subscribe to Things Network Handler to send/receive data via AMQP
- [Data MQTT](data/mqtt) - Subscribe to Things Network Handler to send/receive data via MQTT
- [Samples](samples) - Samples of how to use previous libraries

Expand Down
8 changes: 4 additions & 4 deletions account/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.thethingsnetwork</groupId>
<artifactId>app-sdk</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<artifactId>account</artifactId>
<packaging>jar</packaging>
Expand All @@ -24,17 +24,17 @@
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava</artifactId>
<version>1.1.10</version>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.3</version>
<version>2.8.5</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.4.2</version>
<version>3.5.0</version>
</dependency>
</dependencies>
</project>
Loading