aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-05-15 08:38:12 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2021-05-15 08:38:12 +0700
commitff79bc71ab32c429a8535f30dd9dcb2b3a7ec3fd (patch)
treeb1033922ee44a4c1ba360f6c1abc43a524042bea /.github
parenta9852c226012e5dc1cdfee08b25416e708dfe6fc (diff)
downloadaspectj-ff79bc71ab32c429a8535f30dd9dcb2b3a7ec3fd.tar.gz
aspectj-ff79bc71ab32c429a8535f30dd9dcb2b3a7ec3fd.zip
Remove obsolete .mvn/settings-read-github-packages.xml
The GitHub workflow also does not reference it anymore, which I forgot to do earlier. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/maven.yml4
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