Skip to content

Commit

Permalink
Update to El 5.0.0-M1 and Java 11
Browse files Browse the repository at this point in the history
EL 5.0 requires Java 11 so JSP 3.1 will need a minimum of Java 11 as
well.
  • Loading branch information
markt-asf committed Sep 9, 2021
1 parent 0937f95 commit 28c5343
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<dependency>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
<version>4.0.0</version>
<version>5.0.0-M1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -139,14 +139,14 @@
</executions>
</plugin>

<!-- Restricts the Java version to 1.8 -->
<!-- Restricts the Java version to 11 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
Expand Down

0 comments on commit 28c5343

Please sign in to comment.