Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
arjantijms authored Mar 23, 2024
1 parent 42acb9e commit d44774e
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2021, 2024 Contributors to Eclipse Foundation.
Copyright (c) 2021, 2023 Contributors to Eclipse Foundation.
Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
Expand Down Expand Up @@ -47,7 +46,6 @@
</licenses>

<modules>
<module>faces/api</module>
<module>impl</module>
</modules>

Expand Down Expand Up @@ -85,12 +83,27 @@
<!-- Restricts the Java version to 17 - API remains at Java 17 for now. -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<version>3.11.0</version>
<configuration>
<release>17</release>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>api</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>

<modules>
<module>faces/api</module>
</modules>
</profile>
</profiles>


</project>

0 comments on commit d44774e

Please sign in to comment.