This is an automated email from the ASF dual-hosted git repository. ntimofeev pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne.git
The following commit(s) were added to refs/heads/master by this push: new fb8df7e7c Update readme fb8df7e7c is described below commit fb8df7e7c00fc26bcc5c617b74fa293fb15fb3b8 Author: Nikita Timofeev <stari...@gmail.com> AuthorDate: Tue May 30 17:25:36 2023 +0300 Update readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9c441925a..0ee057e12 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Apache Cayenne ============== -[](https://cayenne.apache.org/download/) +[](https://cayenne.apache.org/download/) [](https://github.com/apache/cayenne/actions/workflows/verify-deploy-on-push.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.31</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.31' + 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')