This is an automated email from the ASF dual-hosted git repository. struberg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/deltaspike.git
commit 2e575abc3faae68cb1a266923254c2cc80661592 Author: Mark Struberg <[email protected]> AuthorDate: Wed May 10 11:41:55 2023 +0200 DELTASPIKE-1437 min java version is now 11 --- deltaspike/dist/bom/pom.xml | 4 ++-- deltaspike/examples/jsf-examples/pom.xml | 10 +--------- deltaspike/examples/jsf-playground/pom.xml | 11 ----------- deltaspike/pom.xml | 2 +- 4 files changed, 4 insertions(+), 23 deletions(-) diff --git a/deltaspike/dist/bom/pom.xml b/deltaspike/dist/bom/pom.xml index 70441c377..df6f514be 100644 --- a/deltaspike/dist/bom/pom.xml +++ b/deltaspike/dist/bom/pom.xml @@ -36,8 +36,8 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - <maven.compiler.source>1.6</maven.compiler.source> - <maven.compiler.target>1.6</maven.compiler.target> + <maven.compiler.source>11</maven.compiler.source> + <maven.compiler.target>11</maven.compiler.target> </properties> <dependencyManagement> diff --git a/deltaspike/examples/jsf-examples/pom.xml b/deltaspike/examples/jsf-examples/pom.xml index a0b014824..0e6c2b46c 100644 --- a/deltaspike/examples/jsf-examples/pom.xml +++ b/deltaspike/examples/jsf-examples/pom.xml @@ -68,15 +68,7 @@ <build> <defaultGoal>install</defaultGoal> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.0</version> - <configuration> - <source>1.7</source> - <target>1.7</target> - </configuration> - </plugin> + <plugin> <groupId>org.apache.openejb.maven</groupId> <artifactId>tomee-maven-plugin</artifactId> diff --git a/deltaspike/examples/jsf-playground/pom.xml b/deltaspike/examples/jsf-playground/pom.xml index 5f81cd855..e37406f02 100644 --- a/deltaspike/examples/jsf-playground/pom.xml +++ b/deltaspike/examples/jsf-playground/pom.xml @@ -215,17 +215,6 @@ <build> <finalName>ds</finalName> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.0</version> - <configuration> - <source>1.7</source> - <target>1.7</target> - </configuration> - </plugin> - </plugins> </build> </project> diff --git a/deltaspike/pom.xml b/deltaspike/pom.xml index 4aad456cd..25ff407f3 100644 --- a/deltaspike/pom.xml +++ b/deltaspike/pom.xml @@ -108,7 +108,7 @@ <configuration> <charset>UTF-8</charset> <detectLinks>true</detectLinks> - <source>1.8</source> + <source>11</source> <excludePackageNames>org.apache.deltaspike.example.*:org.apache.deltaspike.playground*:org.apache.deltaspike.test.*:org.apache.deltaspike.cdise.tck*:org.apache.deltaspike.cdise.servlet*:*impl*</excludePackageNames> <groups> <group>
