Skip to content

Commit 123fbfe

Browse files
committed
Cleanup
Tidying up various admin issues. Signed-off-by: Paul Harris <[email protected]>
1 parent 09f611b commit 123fbfe

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
.idea/libraries
2+
.idea/jarRepositories.xml
23
.idea/tasks.xml
34
.idea/workspace.xml
45
target/
56
bin/
67
.project
78
.classpath
89
.settings/
9-
.factorypath
10+
.factorypath

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
| Artifact | Javadocs
55
| -------- | --------
6-
| `cloudfoundry-client` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-client/3.20.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-client/3.20.0.RELEASE)
7-
| `cloudfoundry-client-reactor` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-client-reactor/3.20.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-client-reactor/3.20.0.RELEASE)
8-
| `cloudfoundry-operations` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-operations/3.20.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-operations/3.20.0.RELEASE)
9-
| `cloudfoundry-util` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-util/3.20.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-util/3.20.0.RELEASE)
6+
| `cloudfoundry-client` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-client/3.23.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-client/3.23.0.RELEASE)
7+
| `cloudfoundry-client-reactor` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-client-reactor/3.23.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-client-reactor/3.23.0.RELEASE)
8+
| `cloudfoundry-operations` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-operations/3.23.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-operations/3.23.0.RELEASE)
9+
| `cloudfoundry-util` | [![javadoc](https://javadoc.io/badge2/org.cloudfoundry/cloudfoundry-util/3.23.0.RELEASE/javadoc.svg)](https://javadoc.io/doc/org.cloudfoundry/cloudfoundry-util/3.23.0.RELEASE)
1010

1111
| Job | Status
1212
| --- | ------
@@ -21,7 +21,7 @@
2121
The `cf-java-client` project is a Java language binding for interacting with a Cloud Foundry instance. The project is broken up into a number of components that expose different levels of abstraction depending on need.
2222

2323
* `cloudfoundry-client` – Interfaces, request, and response objects mapping to the [Cloud Foundry REST APIs][a]. This project has no implementation and therefore cannot connect to a Cloud Foundry instance on its own.
24-
* `cloudfoundry-client-reactor` – The default implementation of the `cloudfoundry-client` project. This implementation is based on the Reactor Netty [`HttpClient`][h].
24+
* `cloudfoundry-client-reactor` – The default implementation of the `cloudfoundry-client` project. This implementation is based on Reactor Netty [`HttpClient`][h].
2525
* `cloudfoundry-operations` – An API and implementation that corresponds to the [Cloud Foundry CLI][c] operations. This project builds on the `cloudfoundry-client` and therefore has a single implementation.
2626

2727
## Versions
@@ -35,12 +35,12 @@ Most projects will need two dependencies; the Operations API and an implementati
3535
<dependency>
3636
<groupId>org.cloudfoundry</groupId>
3737
<artifactId>cloudfoundry-client-reactor</artifactId>
38-
<version>3.20.0.RELEASE</version>
38+
<version>3.23.0.RELEASE</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.cloudfoundry</groupId>
4242
<artifactId>cloudfoundry-operations</artifactId>
43-
<version>3.20.0.RELEASE</version>
43+
<version>3.23.0.RELEASE</version>
4444
</dependency>
4545
...
4646
</dependencies>
@@ -66,8 +66,8 @@ For Gradle, the dependencies would be defined like this:
6666

6767
```groovy
6868
dependencies {
69-
compile 'org.cloudfoundry:cloudfoundry-client-reactor:3.20.0.RELEASE'
70-
compile 'org.cloudfoundry:cloudfoundry-operations:3.20.0.RELEASE'
69+
compile 'org.cloudfoundry:cloudfoundry-client-reactor:3.23.0.RELEASE'
70+
compile 'org.cloudfoundry:cloudfoundry-operations:3.23.0.RELEASE'
7171
...
7272
}
7373
```
@@ -207,7 +207,7 @@ Once you've got a reference to the `CloudFoundryOperations`, it's time to start
207207

208208
1. Requests a list of all organizations
209209
1. Extracts the name of each organization
210-
1. Prints the name of the each organization to `System.out`
210+
1. Prints the name of each organization to `System.out`
211211

212212
```java
213213
cloudFoundryOperations.organizations()

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343

4444
<developers>
4545
<developer>
46-
<name>Pivotal</name>
47-
<email>info@pivotal.io</email>
48-
<organization>Pivotal Software, Inc.</organization>
46+
<name>VMware</name>
47+
<email>info@vmware.com</email>
48+
<organization>VMware, Inc.</organization>
4949
<organizationUrl>https://www.cloudfoundry.org</organizationUrl>
5050
</developer>
5151
</developers>

0 commit comments

Comments
 (0)