-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from bstansberry/Issue_166
[Issue_166] Add the ability to exclude Faces new TCK tests; exclude challenge #1935 tests
- Loading branch information
Showing
6 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<profile xmlns="http://maven.apache.org/POM/4.0.0"> | ||
<!-- Exclude accepted TCK challenges that are relevant in all contexts. --> | ||
<id>global-tck-challenges</id> | ||
<activation> | ||
<property><name>newtck.exclusions</name></property> | ||
</activation> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-failsafe-plugin</artifactId> | ||
<configuration> | ||
<excludesFile>${newtck.exclusions}</excludesFile> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Add entries for accepted challenges that are applicable in all contexts. | ||
# Add a comment linking to the challenge, followed by ant globs pointing to the test class. | ||
# To exclude a single method, append '#theMethodName' to the glob. | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<profile xmlns="http://maven.apache.org/POM/4.0.0"> | ||
<!-- Exclude accepted TCK challenges that are only relevant to SE 21 or later. --> | ||
<id>se21-tck-challenges</id> | ||
<activation> | ||
<jdk>[21,)</jdk> | ||
<property><name>se21.newtck.exclusions</name></property> | ||
</activation> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-failsafe-plugin</artifactId> | ||
<configuration> | ||
<excludesFile>${se21.newtck.exclusions}</excludesFile> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Add entries for accepted challenges that are specific to SE 21 or later. | ||
# Add a comment linking to the challenge, followed by ant globs pointing to the test class. | ||
# To exclude a single method, append '#theMethodName' to the glob. | ||
# | ||
# Challenge https://github.com/jakartaee/faces/issues/1935 | ||
**/ee/jakarta/tck/faces/test/javaee8/converter/Issue4070IT#testJavaTimeTypes | ||
**/ee/jakarta/tck/faces/test/javaee8/converter/Issue4087IT#testJavaTimeTypes | ||
**/ee/jakarta/tck/faces/test/javaee8/converter/Issue4110IT#testJavaTimeTypes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters