Skip to content

- Removed CORS restrictions #58

- Removed CORS restrictions

- Removed CORS restrictions #58

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ "prototype" ]
paths-ignore:
- README.md
- .github/**
- .gitignore
pull_request:
branches: [ "prototype" ]
paths-ignore:
- README.md
- .github/**
- .gitignore
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Install Maven 3.9.6
run: |
wget https://downloads.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz
tar -xvf apache-maven-3.9.6-bin.tar.gz
sudo mv apache-maven-3.9.6 /usr/local/apache-maven
rm apache-maven-3.9.6-bin.tar.gz
sudo update-alternatives --install /usr/bin/mvn mvn /usr/local/apache-maven/bin/mvn 1
- name: Test with Maven
run: mvn -B test --file pom.xml