A Java library to query Paqle. Work in progress.
Go to file
Mark Nellemann 6218f78352 Fix logging. 2021-01-21 21:23:00 +01:00
gradle/wrapper Initial commit 2019-08-23 15:19:51 +02:00
src Fix logging. 2021-01-21 21:23:00 +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 Fix logging. 2021-01-21 21:23:00 +01:00
gradle.properties Fix logging. 2021-01-21 21:23:00 +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