You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by nt...@apache.org on 2023/05/30 14:24:18 UTC

[cayenne] branch STABLE-4.2 updated: Update readme

This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch STABLE-4.2
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/STABLE-4.2 by this push:
     new c6334e7ca Update readme
c6334e7ca is described below

commit c6334e7ca8db1ae6179c88425cc709d56c08c755
Author: Nikita Timofeev <st...@gmail.com>
AuthorDate: Tue May 30 17:24:12 2023 +0300

    Update readme
---
 README.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 88729212e..ba1b5d13a 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
 Apache Cayenne
 ==============
 
-[![Maven Central](https://img.shields.io/maven-central/v/org.apache.cayenne/cayenne-server/4.2.RC2.svg)](https://cayenne.apache.org/download/)
+[![Maven Central](https://img.shields.io/maven-central/v/org.apache.cayenne/cayenne-server/4.2.svg)](https://cayenne.apache.org/download/)
 [![verify and deploy 4.2](https://github.com/apache/cayenne/actions/workflows/verify-deploy-on-push-4.2.yml/badge.svg)](https://github.com/apache/cayenne/actions/workflows/verify-deploy-on-push-4.2.yml)
 
 
@@ -73,13 +73,13 @@ Here is example of Cayenne Maven plugin setup that will do it:
 <plugin>
     <groupId>org.apache.cayenne.plugins</groupId>
     <artifactId>cayenne-maven-plugin</artifactId>
-    <version>4.2.RC2</version>
+    <version>4.2</version>
 
     <dependencies>
         <dependency>
             <groupId>mysql</groupId>
             <artifactId>mysql-connector-java</artifactId>
-            <version>8.0.29</version>
+            <version>8.0.33</version>
         </dependency>
     </dependencies>
 
@@ -116,8 +116,8 @@ buildscript {
         mavenCentral()
     }
     dependencies {
-        classpath group: 'org.apache.cayenne.plugins', name: 'cayenne-gradle-plugin', version: '4.2.RC2'
-        classpath 'mysql:mysql-connector-java:8.0.29'
+        classpath group: 'org.apache.cayenne.plugins', name: 'cayenne-gradle-plugin', version: '4.2'
+        classpath 'mysql:mysql-connector-java:8.0.33'
     }
 }
 
@@ -157,7 +157,7 @@ gradlew build
     <dependency>
         <groupId>org.apache.cayenne</groupId>
         <artifactId>cayenne-server</artifactId>
-        <version>4.2.RC2</version>
+        <version>4.2</version>
     </dependency>
 </dependencies>
 ```
@@ -165,7 +165,7 @@ gradlew build
 ##### Gradle
 
 ```gradle
-compile group: 'org.apache.cayenne', name: 'cayenne-server', version: '4.2.RC2'
+compile group: 'org.apache.cayenne', name: 'cayenne-server', version: '4.2'
  
 // or, if Gradle plugin is used
 compile cayenne.dependency('server')