Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1020 Bytes

building.md

File metadata and controls

38 lines (24 loc) · 1020 Bytes

Building SDK

This page provides instruction how to build subprojects of the SDK. This is intended for SDK developers. If you need to build a new API service, follow instructions at zowe-rest-api-sample-spring/README.md.

Java code

All Projects

In the repository root directory:

./gradlew build

This builds both zowe-rest-api-commons-spring and zowe-rest-api-sample-spring. zowe-rest-api-sample-spring includes zowe-rest-api-commons-spring as a Gradle subproject.

Individually

cd zowe-rest-api-commons-spring
./gradlew publishToMavenLocal

This places the artifacts of zowe-rest-api-commons-spring library to local Maven repository with a hardcoded version 0.0.0-SNAPSHOT that will be used by the sample project.

cd ../zowe-rest-api-sample-spring
./gradlew build

CLI Tool

See zowe-api-dev/README.md.

z/OS Native Code