A Java library to query Paqle. Work in progress.
Go to file
Mark Nellemann 10da527f71 Fixed error. 2019-11-29 09:05:33 +01:00
gradle/wrapper Initial commit 2019-08-23 15:19:51 +02:00
src Fixed error. 2019-11-29 09:05:33 +01: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 Fixed error. 2019-11-29 09:05:33 +01:00
gradle.properties Fixed error. 2019-11-29 09:05:33 +01: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