Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
Merge pull request #43 from TheThingsNetwork/2.1.0
Browse files Browse the repository at this point in the history
finally, the 2.1.0 release !
  • Loading branch information
cambierr authored Feb 13, 2017
2 parents e4af917 + f1f5a49 commit b58cf29
Show file tree
Hide file tree
Showing 73 changed files with 4,077 additions and 606 deletions.
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

0 comments on commit b58cf29

Please sign in to comment.