Tago Java SDK

SDK for the tago api

License

License

Categories

Categories

Java Languages Maven Build Tools
GroupId

GroupId

io.tago.java
ArtifactId

ArtifactId

tago-java-maven-plugin
Last Version

Last Version

4.0.5
Release Date

Release Date

Type

Type

jar
Description

Description

Tago Java SDK
SDK for the tago api
Project URL

Project URL

https://github.com/tago-io/tago-sdk-java
Source Code Management

Source Code Management

https://github.com/tago-io/tago-sdk-java.git

Download tago-java-maven-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/io.tago.java/tago-java-maven-plugin/ -->
<dependency>
    <groupId>io.tago.java</groupId>
    <artifactId>tago-java-maven-plugin</artifactId>
    <version>4.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/io.tago.java/tago-java-maven-plugin/
implementation 'io.tago.java:tago-java-maven-plugin:4.0.5'
// https://jarcasting.com/artifacts/io.tago.java/tago-java-maven-plugin/
implementation ("io.tago.java:tago-java-maven-plugin:4.0.5")
'io.tago.java:tago-java-maven-plugin:jar:4.0.5'
<dependency org="io.tago.java" name="tago-java-maven-plugin" rev="4.0.5">
  <artifact name="tago-java-maven-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.tago.java', module='tago-java-maven-plugin', version='4.0.5')
)
libraryDependencies += "io.tago.java" % "tago-java-maven-plugin" % "4.0.5"
[io.tago.java/tago-java-maven-plugin "4.0.5"]

Dependencies

compile (3)

Group / Artifact Type Version
com.github.nkzawa : socket.io-client jar 0.6.0
org.springframework : spring-web jar 3.2.8.RELEASE
com.fasterxml.jackson.core : jackson-databind jar 2.6.1

test (1)

Group / Artifact Type Version
junit : junit jar 4.12

Project Modules

There are no modules declared in this project.

wercker status

Description

Tago SDK for Java.

what where
Tago website http://tago.io
SDK documentation http://sdk.java.tago.io
General documentation http://docs.tago.io
Slack / Community http://community.tago.io

Installation

Maven

<dependency>
    <groupId>io.tago.java</groupId>
    <artifactId>tago-java-maven-plugin</artifactId>
    <version>4.0.1</version>
</dependency>

Gradle

compile 'io.tago.java:tago-java-maven-plugin:4.0.1'

Other Options

Quick Example

Insert Device Data

Device device = new Device("8aa46f99-3156-4ebd-a275-fdb75c4dccbf");

final Object loc = new Object() {
    public Double lat = 42.2974279;
    public Double lng = -85.628292;
};

Object dataToInsert = new Object() {
    public String variable = "temperature";
    public String unit = "C";
    public Integer value = 63;
    public String time = "2015-11-03 13:44:33";
    public Object location = loc;
};

Result res = device.insert(data);

// -> See full documentation at: http://sdk.java.tago.io/

License

Tago SDK for Java is released under the Apache-2.0 License.

io.tago.java

TagoIO

TagoIO provides easy connection of electronic devices with external data to driver smarter decisions using contextual analysis.

Versions

Version
4.0.5
4.0.1