diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..7073338
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,35 @@
+# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
+
+# This workflow uses actions that are not certified by GitHub.
+# They are provided by a third-party and are governed by
+# separate terms of service, privacy policy, and support
+# documentation.
+
+name: Java CI with Maven
+
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK 20
+ uses: actions/setup-java@v3
+ with:
+ java-version: '20'
+ distribution: 'temurin'
+ cache: maven
+ - name: Build with Maven
+ run: mvn -B -X package --file pom.xml -Dmaven.test.skip=true
+
+ # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
+ - name: Update dependency graph
+ uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
diff --git a/lib/junit-jupiter-api-5.4.2.jar b/lib/junit-jupiter-api-5.4.2.jar
new file mode 100644
index 0000000..40828b7
Binary files /dev/null and b/lib/junit-jupiter-api-5.4.2.jar differ
diff --git a/pom.xml b/pom.xml
index df9690c..6173888 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,10 +17,27 @@
org.junit.jupiter
junit-jupiter
- RELEASE
+
+ RELEASE
test
+
+ javax.faces
+ javax.faces
+ system
+ 2.3.0
+ ${basedir}/lib/javax.faces-2.3.0.jar
+
+
+
+ junit-jupiter-api
+ junit-jupiter-api
+ system
+ 5.4.2
+ ${basedir}/lib/junit-jupiter-api-5.4.2.jar
+
+
org.openjfx
javafx-graphics
@@ -50,8 +67,10 @@
maven-compiler-plugin
3.10.1
- 19
- 19
+
+ 20
+
+ 20
--enable-preview
@@ -62,4 +81,4 @@
-
\ No newline at end of file
+