A Java library to query Paqle. Work in progress.
Go to file
Mark Nellemann d64e80ecb0 Lowercased fields and use GSON's alternative name to make it work. 2019-08-24 10:52:53 +02:00
gradle/wrapper Initial commit 2019-08-23 15:19:51 +02:00
src Lowercased fields and use GSON's alternative name to make it work. 2019-08-24 10:52:53 +02:00
.editorconfig Initial commit 2019-08-23 15:19:51 +02:00
.gitignore Initial commit 2019-08-23 15:19:51 +02:00
README.md Update README and getResponse(). 2019-08-23 15:44:31 +02:00
bitbucket-pipelines.yml Initial commit 2019-08-23 15:19:51 +02:00
build.gradle Lowercased fields and use GSON's alternative name to make it work. 2019-08-24 10:52:53 +02:00
gradle.properties Lowercased fields and use GSON's alternative name to make it work. 2019-08-24 10:52:53 +02:00
gradlew Initial commit 2019-08-23 15:19:51 +02:00
gradlew.bat Initial commit 2019-08-23 15:19:51 +02:00

README.md

libpaqle


A Java library to query Paqle. Work in progress.

Usage

Paqle paqle = new Paqle("MyCompany", "myUsername", "myPassword");
PaqleResponse response = paqle.getResponse(["57020415"]);

Gradle

repositories {
    maven { url 'https://dl.bintray.com/mnellemann/libs' }
}

dependencies {
    compile 'biz.nellemann.libs:libpaqle:1.+'
}

Development

To build and test the code:

./gradle build
./gradle test