Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create maven.yml #8

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
35 changes: 35 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -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
Binary file added lib/junit-jupiter-api-5.4.2.jar
Binary file not shown.
27 changes: 23 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,27 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<!--version>5.4.2</version-->
<version>RELEASE</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>javax.faces</groupId>
<artifactId>javax.faces</artifactId>
<scope>system</scope>
<version>2.3.0</version>
<systemPath>${basedir}/lib/javax.faces-2.3.0.jar</systemPath>
</dependency>

<dependency>
<groupId>junit-jupiter-api</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>system</scope>
<version>5.4.2</version>
<systemPath>${basedir}/lib/junit-jupiter-api-5.4.2.jar</systemPath>
</dependency>

<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-graphics</artifactId>
Expand Down Expand Up @@ -50,8 +67,10 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>19</source>
<target>19</target>
<!--source>19</source-->
<source>20</source>
<!--target>19</target-->
<target>20</target>
<compilerArgs>
--enable-preview
</compilerArgs>
Expand All @@ -62,4 +81,4 @@
</build>


</project>
</project>