diff options
Diffstat (limited to '.github/workflows/maven.yml')
-rw-r--r-- | .github/workflows/maven.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 585f75ac3..b4d9fe615 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -32,11 +32,11 @@ jobs: ant -version - name: Compile + package code - run: ./mvnw -B --settings .mvn/settings-read-github-packages.xml --file pom.xml -DskipTests package + run: ./mvnw -B --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 --settings .mvn/settings-read-github-packages.xml --file pom.xml -Daspectj.tests.verbose=false verify + run: ./mvnw -B --file pom.xml -Daspectj.tests.verbose=false verify |