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
commit 31fdde835ec7c17a47b6f460313f45193da258b4 Author: Nikita Timofeev <stari...@gmail.com> AuthorDate: Mon May 17 10:20:22 2021 +0300 CAY-2708 Gradle build plugin fails on Java 16 --- .travis.yml | 1 + RELEASE-NOTES.txt | 1 + cayenne-gradle-plugin/pom.xml | 8 -------- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0e4e15e..6cc8495 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,6 +38,7 @@ env: jdk: - openjdk8 - openjdk11 + - openjdk16 - openjdk-ea script: diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 0ea9151..2f41f56 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -21,6 +21,7 @@ CAY-2703 Modeler: incorrect active tab style on the MacOS version CAY-2705 Performance of callback annotation processing CAY-2706 Modeler: object attribute dialog doesn't properly initialized for the embeddable type CAY-2707 Modeler: code generation is broken in the DataDomain tab +CAY-2708 Gradle build plugin fails on Java 16 CAY-2709 Modeler: Cgen fails to generate code for a new unsaved project with all settings set to default ---------------------------------- diff --git a/cayenne-gradle-plugin/pom.xml b/cayenne-gradle-plugin/pom.xml index 968f699..da29788 100644 --- a/cayenne-gradle-plugin/pom.xml +++ b/cayenne-gradle-plugin/pom.xml @@ -137,14 +137,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.8</source> - <target>1.8</target> - </configuration> - </plugin> </plugins> </build>