Skip to content

Commit

Permalink
Allow compilation of deployment example under JDK8 and 11 (#438)
Browse files Browse the repository at this point in the history
* Allow compilation of deployment example under JDK8 and 11
  • Loading branch information
tmiddlet2666 authored Aug 12, 2020
1 parent 2a09f9c commit 3f6d6eb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ to the kubernetes zone label on the associated pod.
Kibana (EFK) stack), and Prometheus to monitor the performance, logs, and health of your clusters.

-------
The current release of the operator is 3.0.0
The current release of the operator is 3.0.1

Documentation for the Coherence Operator is available [here](https://oracle.github.io/coherence-operator/docs/3.0.0)
Documentation for the Coherence Operator is available [here](https://oracle.github.io/coherence-operator/docs/3.0.1)

The fastest way to experience the operator is to follow the
[Quick Start guide](https://oracle.github.io/coherence-operator/docs/3.0.0/#/about/03_quickstart).
[Quick Start guide](https://oracle.github.io/coherence-operator/docs/3.0.1/#/about/03_quickstart).
-------

# Need more help? Have a suggestion? Come and say "Hello!"
Expand Down
7 changes: 5 additions & 2 deletions examples/deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ You can use `kubectl create` for any of the examples to install that one directl

## Coherence Operator Quick Start

Ensure you have followed all the [Quick Start Guide](https://oracle.github.io/coherence-operator/docs/#/about/03_quickstart) including the
Ensure you have followed all the [Quick Start Guide](https://oracle.github.io/coherence-operator/docs/3.0.1/#/about/03_quickstart) including the
prerequisites and have been able to successfully install the Coherence Operator and a Coherence Cluster.

## Software Versions

Ensure you have the following software installed:

* [Java 11+ JDK](http://jdk.java.net/)
* [Java 8+ JDK](http://jdk.java.net/)
* [Maven](https://maven.apache.org) version 3.6.0+
* [Docker](https://docs.docker.com/install/) version 17.03+.
* [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) version v1.12.0+ .
Expand Down Expand Up @@ -92,6 +92,9 @@ following command to build the projects and associated Docker images:
mvn clean install -P docker
```

> Note: If you want to change the Coherence version from the default of 14.1.1-0-1 to 20.06, then
> you can supply the -Dcoherence.version=20.06 for the mvn commands below. You must also use JDK11.
> Note: If you are running behind a corporate proxy and receive the following message building the
> Docker image:
> `Connect to gcr.io:443 [gcr.io/172.217.212.82] failed: connect timed out` you must modify the build command
Expand Down
3 changes: 2 additions & 1 deletion examples/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<release>8</release>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>

Expand Down

0 comments on commit 3f6d6eb

Please sign in to comment.