Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 918 Bytes

File metadata and controls

31 lines (22 loc) · 918 Bytes

smartsantander

Java library for accessing SmartSantander's sensors data, both real time and historical, as described in the project wiki.

Check the API for more details:

http://predictia.github.io/smartsantander/apidocs/index.html

Import as maven dependency

You will need to add to your project's pom.xml file the repository:

<repositories>
   <repository>
      <id>predictia-public-releases</id>
      <url>https://raw.github.com/Predictia/maven-repo/master/releases</url>
   </repository>
</repositories>

And the dependency itself

<dependencies>
  <dependency>
    <groupId>es.predictia</groupId>
    <artifactId>smartsantander</artifactId>
    <version>0.0.1</version>
  </dependency>
</dependencies>