Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 987 Bytes

File metadata and controls

43 lines (28 loc) · 987 Bytes

Zowe REST API Common Library for Spring

Download

Java library that provides useful functionality for z/OS REST APIs developed in Spring Boot.

Creating new version

git tag v0.0.1
git push origin v0.0.1

Publishing to Maven Local

./gradlew publishToMavenLocal

Publishing to Bintray

You need to provide your credentials to Bintray. You can get it from https://bintray.com/profile/edit, section API Key.

BINTRAY_USER=user BINTRAY_API_KEY=apikey ./gradlew uploadBintray

Using the Library

plugins {
    id 'java'
}

repositories {
    mavenLocal()
    jcenter()
}

dependencies {
    implementation 'org.zowe:zowe-rest-api-commons-spring:<replace with desired version>'
}

Other documentation