Skip to content

Commit 8fd8c85

Browse files
author
Tim Middleton
authored
Prepare for 6.0.0 release with 22.09 (#32)
* Prepare for 6.0.0 release with 22.09 * Readme update * Remove coherence-metrics
1 parent d8684c8 commit 8fd8c85

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

.github/workflows/maven-build-jdk17.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
version:
22-
- 21.12.4
23-
- 22.06
24-
- 22.06.1
22+
- 22.06.2
2523

2624
steps:
2725
- name: Checkout

.github/workflows/maven-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- 14.1.1-0-10
2323
- 14.1.1-0-9
2424
- 21.12.4
25-
- 22.06
2625
- 22.06.1
26+
- 22.06.2
2727

2828
steps:
2929
- name: Checkout

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ The demonstration uses AngularJS 1.7.5, Bootstrap 3.3.4, and a number of other f
5757

5858
To run the demonstration application, you must have the following software installed:
5959

60-
1. Java 11 or 17 SE Development Kit or Runtime environment.
60+
1. Java 17 SE Development Kit or Runtime environment.
6161

62-
You can download JDK 11 or 17 from [Java SE Development Kit Downloads](https://www.oracle.com/java/technologies/downloads/)
62+
You can download JDK 17 from [Java SE Development Kit Downloads](https://www.oracle.com/java/technologies/downloads/)
6363

6464
1. Maven 3.6.0 or later version installed and configured.
6565

@@ -100,8 +100,6 @@ location.
100100

101101
## Run the Application Locally
102102

103-
> Note: You *must* first use `git checkout v5.0.1` to use the current 5.0.1 release that supports Coherence CE 22.06.
104-
105103
Build the application using Maven:
106104

107105
```bash
@@ -121,6 +119,9 @@ Run demo application
121119
mvn exec:exec
122120
```
123121

122+
> Note: If you wish to run against an older Coherence CE version than 22.09 or older than Coherence GE 14.1.1.2206.1, then *must* first use `git checkout v5.0.1` to use the
123+
> current 5.0.1 release that supports these older versions.
124+
124125
The following screenshot shows the application running with 5 cache servers started.
125126

126127
![Coherence Demo](assets/coherence-demo.png "Coherence Demo")

pom.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
* File: pom.xml
44
*
5-
* Copyright (c) 2015, 2020, 2021 Oracle and/or its affiliates.
5+
* Copyright (c) 2015, 2022 Oracle and/or its affiliates.
66
*
77
* You may not use this file except in compliance with the Universal Permissive
88
* License (UPL), Version 1.0 (the "License.")
@@ -32,7 +32,7 @@
3232

3333
<!-- dependency versions -->
3434
<bedrock.version>6.0.1</bedrock.version>
35-
<coherence.version>22.09-SNAPSHOT</coherence.version>
35+
<coherence.version>22.09</coherence.version>
3636
<jakarta.xml.bind.version>3.0.1</jakarta.xml.bind.version>
3737
<copy.rename.maven.plugin.version>1.0</copy.rename.maven.plugin.version>
3838
<derby.version>10.15.2.0</derby.version>
@@ -49,7 +49,7 @@
4949
<opentracing.jdbc.version>0.2.10</opentracing.jdbc.version>
5050

5151
<!-- maven configuration -->
52-
<java.version>1.8</java.version>
52+
<java.version>11</java.version>
5353
<maven.assembly.plugin.version>3.0.0</maven.assembly.plugin.version>
5454
<maven.compiler.source>11</maven.compiler.source>
5555
<maven.compiler.target>11</maven.compiler.target>
@@ -83,12 +83,6 @@
8383
<artifactId>coherence-management</artifactId>
8484
<version>${coherence.version}</version>
8585
</dependency>
86-
87-
<dependency>
88-
<groupId>${coherence.group.id}</groupId>
89-
<artifactId>coherence-metrics</artifactId>
90-
<version>${coherence.version}</version>
91-
</dependency>
9286

9387
<dependency>
9488
<groupId>${coherence.group.id}</groupId>

0 commit comments

Comments
 (0)