Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/UrbanCode/uDeployRestClient
Java REST Client to interact with UrbanCode Deploy.
https://github.com/UrbanCode/uDeployRestClient
Last synced: 3 months ago
JSON representation
Java REST Client to interact with UrbanCode Deploy.
- Host: GitHub
- URL: https://github.com/UrbanCode/uDeployRestClient
- Owner: UrbanCode
- Created: 2016-07-27T14:20:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-04T13:39:24.000Z (almost 6 years ago)
- Last Synced: 2024-06-29T09:34:05.160Z (5 months ago)
- Language: Java
- Homepage:
- Size: 110 KB
- Stars: 7
- Watchers: 18
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: license/DCO1.1.txt
Awesome Lists containing this project
README
# IBM UrbanCode uDepoyRestClient Project
---### License
This plugin is protected under the [Apache Version 2.0 License](https://www.apache.org/licenses/LICENSE-2.0.txt)### Compatibility
The uDeployRestClient is used to interact with IBM UrbanCode Deploy v6.0 or later and
implemented through a plugin or script. It provides wrapper functionality, through the
REST client, with various UCD objects such as: Applications, Components, and Processes.### Installation
At this time, the uDeployRestClient.jar must be built locally. We are actively preparing the binaries to compile uDeployRestClient locally and distribute through Maven.
Follow the build instructions below and place the necessary 4 jars within the /lib directory to compile.### History
Version 1.0
Community GitHub Release### Compiling Source
`gradle`The Gradle .jar file can be found in build/libs once the project has been built, under the Releases tab, or as an artifact on Maven Repository. To add the uDeployRestClient project as a dependency in another Gradle project, add the following lines:
```
dependencies {
compile 'com.ibm.urbancode.plugins:uDeployRestClient:1.0'
}
```To add the uDeployRestClient project as a dependency in another Ant Ivy project, add the following line:
``````
To compile the project locally, four additional jar files are required: CommonsUtil.jar, commons-web.jar, HttpComponents-Util.jar , and udclient.jar.
Place these jars in uDeployRestClient project's 'lib' folder located in the root directory. These jars can be found within IBM UrbanCode Deploy's installation directory.### Java Docs
`gradle createDocs`Generate new Java Docs with the above command.