Skip to content

Commit 4ce8018

Browse files
committed
Merge branch '3.x'
2 parents 651a3bc + 7bc654b commit 4ce8018

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.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: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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,13 +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>4.3.0.RELEASE</version>
38+
<version>4.6.0.RELEASE</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>org.cloudfoundry</groupId>
4242
<artifactId>cloudfoundry-operations</artifactId>
43-
<version>4.3.0.RELEASE</version>
44-
</dependency>
43+
<version>4.6.0.RELEASE</version>
4544
</dependency>
4645
...
4746
</dependencies>
@@ -67,8 +66,8 @@ For Gradle, the dependencies would be defined like this:
6766

6867
```groovy
6968
dependencies {
70-
compile 'org.cloudfoundry:cloudfoundry-client-reactor:4.3.0.RELEASE'
71-
compile 'org.cloudfoundry:cloudfoundry-operations:4.3.0.RELEASE'
69+
compile 'org.cloudfoundry:cloudfoundry-client-reactor:4.6.0.RELEASE'
70+
compile 'org.cloudfoundry:cloudfoundry-operations:4.6.0.RELEASE'
7271
...
7372
}
7473
```
@@ -208,7 +207,7 @@ Once you've got a reference to the `CloudFoundryOperations`, it's time to start
208207

209208
1. Requests a list of all organizations
210209
1. Extracts the name of each organization
211-
1. Prints the name of the each organization to `System.out`
210+
1. Prints the name of each organization to `System.out`
212211

213212
```java
214213
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)