Skip to content

Commit ef87be5

Browse files
authored
Merge pull request #2150 from jakartaee/migrate_old_tck_batch_5
migrate api tests of old-tck to faces20/api
2 parents 7b95faf + 858875f commit ef87be5

1,392 files changed

Lines changed: 51651 additions & 203890 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

tck/faces20/ajax/src/main/webapp/WEB-INF/web.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323

2424
<display-name>jsf_ajax</display-name>
2525

26-
<context-param>
27-
<param-name>org.glassfish.mojarra.validateXml</param-name>
28-
<param-value>true</param-value>
29-
</context-param>
30-
3126
<servlet>
3227
<servlet-name>Faces Servlet</servlet-name>
3328
<servlet-class>jakarta.faces.webapp.FacesServlet</servlet-class>

tck/faces20/api/api/pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Copyright (c) 2026 Contributors to Eclipse Foundation.
5+
6+
This program and the accompanying materials are made available under the
7+
terms of the Eclipse Public License v. 2.0, which is available at
8+
http://www.eclipse.org/legal/epl-2.0.
9+
10+
This Source Code may also be made available under the following Secondary
11+
Licenses when the conditions for such availability set forth in the
12+
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13+
version 2 with the GNU Classpath Exception, which is available at
14+
https://www.gnu.org/software/classpath/license.html.
15+
16+
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17+
18+
-->
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>org.eclipse.ee4j.tck.faces.faces20</groupId>
24+
<artifactId>api</artifactId>
25+
<version>5.0.0-SNAPSHOT</version>
26+
</parent>
27+
28+
<artifactId>api-main</artifactId>
29+
<packaging>war</packaging>
30+
31+
<name>Jakarta Faces TCK ${project.version} - Test - Faces 2.0 - api - main</name>
32+
33+
<dependencies>
34+
<dependency>
35+
<groupId>org.eclipse.ee4j.tck.faces.faces20</groupId>
36+
<artifactId>api-common-tckjar</artifactId>
37+
<version>${project.version}</version>
38+
</dependency>
39+
</dependencies>
40+
41+
<build>
42+
<finalName>test-faces20-api</finalName>
43+
</build>
44+
</project>

0 commit comments

Comments
 (0)