Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[faces-dev] Faces 4.1 TCK enforces Java 21 requirement

Hi,

I was looking over some of the Faces 4.1 changes and came across the following:  https://github.com/jakartaee/faces/blob/4.1/tck/pom.xml#L373

Commit: https://github.com/jakartaee/faces/commit/f15a8baeef1ca4e4ee3ac563b819691803ca9b0b

        <plugins>
            <plugin>
                <artifactId>maven-enforcer-plugin</artifactId>
                <configuration>
                    <rules>
                        <requireMavenVersion>
                            <version>3.6.3</version>
                        </requireMavenVersion>
                        <requireJavaVersion>
                            <version>21</version>
                        </requireJavaVersion>
                    </rules>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>enforce</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Since the TCK should be able to be used to certify with Java 17 and Java 21 shouldn't we reduce this down to Java 17?

If no objection I can get a PR up to change this to Java 17.

Thanks,

Paul Nicolucci

Back to the top