Skip to content

Commit 074b08c

Browse files
authored
Merge pull request #13 from IBM/sdk-update-20230126-124346
Sdk update 20230126 124346
2 parents 47329e7 + 3ada101 commit 074b08c

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

.travis.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cache:
1818

1919
env:
2020
global:
21-
- MVN_ARGS="--settings build/.travis.settings.xml"
21+
- MVN_ARGS="--settings ./build/.travis.settings.xml"
2222

2323
stages:
2424
- name: Build-Test
@@ -62,13 +62,13 @@ jobs:
6262
- build/publishJavadoc.sh
6363
after_success:
6464
- echo "Javadocs successfully published to gh-pages!"
65-
- jdk: openjdk8
66-
if: tag IS present
67-
name: Publish-To-Maven-Central
68-
install: true
69-
script:
70-
- build/setupSigning.sh
71-
- build/setMavenVersion.sh
72-
- mvn deploy $MVN_ARGS -DskipTests -P central
73-
after_success:
74-
- echo "Maven artifacts successfully published to Maven Central!"
65+
# - jdk: openjdk8
66+
# if: tag IS present
67+
# name: Publish-To-Maven-Central
68+
# install: true
69+
# script:
70+
# - build/setupSigning.sh
71+
# - build/setMavenVersion.sh
72+
# - mvn deploy $MVN_ARGS -DskipTests -P central
73+
# after_success:
74+
# - echo "Maven artifacts successfully published to Maven Central!"

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
[![Build Status](https://travis-ci.com/IBM/code-engine-java-sdk.svg?branch=main)](https://travis-ci.com/IBM/code-engine-java-sdk)
2-
<!--
32
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
4-
-->
53

6-
# IBM Cloud Code Engine Java SDK Version 2.0.3
4+
# IBM Cloud Code Engine Java SDK Version 2.0.5
75

86
Java client library to interact with the [Code Engine API](https://cloud.ibm.com/apidocs/codeengine).
97

@@ -41,7 +39,7 @@ The IBM Cloud Code Engine Java SDK allows developers to programmatically interac
4139

4240
Service Name | Artifact Coordinates
4341
--- | ---
44-
[Code Engine](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.0) | com.ibm.cloud.code-engine:2.0.3
42+
[Code Engine](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.0) | com.ibm.cloud.code-engine:2.0.5
4543

4644
## Prerequisites
4745

@@ -53,7 +51,7 @@ Service Name | Artifact Coordinates
5351

5452
## Installation
5553

56-
The current version of this SDK is: 2.0.3
54+
The current version of this SDK is: 2.0.5
5755

5856
Each service's artifact coordinates are listed in the table above.
5957

@@ -72,16 +70,18 @@ Here are examples for maven and gradle:
7270
<dependency>
7371
<groupId>com.ibm.cloud</groupId>
7472
<artifactId>code-engine</artifactId>
75-
<version>2.0.3</version>
73+
<version>2.0.5</version>
7674
</dependency>
7775
```
7876

7977
### Gradle
78+
8079
```gradle
81-
compile 'com.ibm.cloud:code-engine:2.0.3'
80+
compile 'com.ibm.cloud:code-engine:2.0.5'
8281
```
8382

8483
## Using the SDK
84+
8585
Examples and a demo are available in the [module examples](/modules/examples) folder.
8686

8787
For general SDK usage information, please see [this link](https://github.com/IBM/ibm-cloud-sdk-common/blob/master/README.md)
@@ -93,14 +93,17 @@ please ask a question at
9393
[Stack Overflow](http://stackoverflow.com/questions/ask?tags=ibm-cloud).
9494

9595
## Issues
96+
9697
If you encounter an issue with the project, you are welcome to submit a
9798
[bug report](https://github.com/IBM/code-engine-java-sdk/issues).
9899
Before that, please search for similar issues. It's possible that someone has already reported the problem.
99100

100101
## Open source @ IBM
102+
101103
Find more open source projects on the [IBM Github Page](http://ibm.github.io/)
102104

103105
## Contributing
106+
104107
See [CONTRIBUTING](CONTRIBUTING.md).
105108

106109
## License

build/deploy.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
3+
gpg --version
4+
gpg --fast-import build/signing.key
5+
6+
mvn versions:set -DnewVersion=2.0.3 -DgenerateBackupPoms=false
7+
8+
mvn deploy --settings ./build/.travis.settings.xml -DskipTests -P central

build/signing.key.enc

2.53 KB
Binary file not shown.

modules/examples/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,6 @@
2828
<groupId>org.slf4j</groupId>
2929
<artifactId>slf4j-jdk14</artifactId>
3030
</dependency>
31-
<dependency>
32-
<groupId>io.kubernetes</groupId>
33-
<artifactId>client-java</artifactId>
34-
<version>9.0.0</version>
35-
</dependency>
36-
<dependency>
37-
<groupId>org.json</groupId>
38-
<artifactId>json</artifactId>
39-
<version>20180130</version>
40-
</dependency>
4131
</dependencies>
4232

4333
<build>

0 commit comments

Comments
 (0)