Skip to content

Commit

Permalink
FISH-10299 update faces runner readme, remove useless script
Browse files Browse the repository at this point in the history
  • Loading branch information
aubi committed Dec 18, 2024
1 parent e7fc0c2 commit df25002
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion faces-tck/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
## Prerequisite
Set `JAVA_HOME` to Java 21.

Use maven 3.9.6 or newer.

The runner updates sources of the test to depend on chrome version 131.*

Install the Faces TCK dependencies via tck-download module. Execute from the root directory of TCK runners:

```
Expand All @@ -18,5 +22,20 @@ Run Payara 7 with default setup (with ports 4848 and 8080).
Execute maven test with verify from the this directory:

```
mvn clean verify
mvn clean install
```

In case it's necessary to specify exact versions for testing purposes, the typical command looks like:
```
mvn -B clean install -Dtck.mode=platform -Dmojarra.noupdate=true -Dpayara.version=7.2025.1.Alpha1-SNAPSHOT -Dfaces.version=4.1.1
```

To run only old test, add:
```
-Dmaven.exec.skipping="-pl :old-faces-tck-parent,:old-tck-build,:old-tck-run"
```

If you want to skip selenium tests (it depends on chrome), add:
```
-Dmaven.exec.skipping="-Dtest.selenium=false"
```

0 comments on commit df25002

Please sign in to comment.