A Java library to query Paqle. Work in progress.
Go to file
Mark Nellemann bd98e907ca
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
Fix maven publish
2023-01-03 15:09:05 +01:00
gradle/wrapper Prepare for migration. 2023-01-03 14:58:32 +01:00
src Update 3rd party dependencies. 2021-12-11 20:19:01 +01:00
.drone.yml Prepare for migration. 2023-01-03 14:58:32 +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 Prepare for migration. 2023-01-03 14:58:32 +01:00
bitbucket-pipelines.yml Remove jcenter and update dependencies. 2021-08-22 15:57:54 +02:00
build.gradle Fix maven publish 2023-01-03 15:09:05 +01:00
gradle.properties Fix maven publish 2023-01-03 15:09:05 +01:00
gradlew Prepare for migration. 2023-01-03 14:58:32 +01:00
gradlew.bat Prepare for migration. 2023-01-03 14:58:32 +01:00

README.md

libpaqle


A Java library to query Paqle. Work in progress.

Build Status

Usage

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

Gradle

repositories {
	maven { url 'https://git.data.coop/api/packages/nellemann/maven' }
}

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

Development

To build and test the code:

./gradle build
./gradle test