aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/maven.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 6af860e3b..5ab310b94 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -32,14 +32,14 @@ jobs:
ant -version
- name: Download + install test libraries
- run: ./mvnw -B -U --file libx/pom.xml compile
+ run: ./mvnw -B --settings .mvn/settings-read-github-packages.xml --file libx/pom.xml compile
- name: Compile + package code
- run: ./mvnw -B -DskipTests package --file pom.xml
+ run: ./mvnw -B --settings .mvn/settings-read-github-packages.xml --file pom.xml -DskipTests package
- name: Run Tests
# Tests in module ajde call Swing/AWT classes. Without frame buffer they throw
# HeadlessException: No X11 DISPLAY variable was set, but this program performed an operation which requires it.
uses: GabrielBB/xvfb-action@v1
with:
- run: ./mvnw -B -Daspectj.tests.verbose=false verify --file pom.xml
+ run: ./mvnw -B --settings .mvn/settings-read-github-packages.xml --file pom.xml -Daspectj.tests.verbose=false verify