diff options
author | Andy Clement <aclement@pivotal.io> | 2021-05-22 17:56:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 17:56:06 -0700 |
commit | bd854373aa6e10a1fd472ec191c2072ec307ec75 (patch) | |
tree | 2f167044b9250f2a7d42599f11d467b5bf1de0a6 | |
parent | d2d5533f8f2f7b8116d6e171cc4e7d39f6ce1a29 (diff) | |
parent | ff79bc71ab32c429a8535f30dd9dcb2b3a7ec3fd (diff) | |
download | aspectj-bd854373aa6e10a1fd472ec191c2072ec307ec75.tar.gz aspectj-bd854373aa6e10a1fd472ec191c2072ec307ec75.zip |
Merge pull request #51 from kriegaex/remove-github-packages-references
Remove GitHub Packages references
-rw-r--r-- | .github/workflows/maven.yml | 4 | ||||
-rw-r--r-- | .mvn/maven-config | 1 | ||||
-rw-r--r-- | .mvn/settings-read-github-packages.xml | 25 |
3 files changed, 2 insertions, 28 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 diff --git a/.mvn/maven-config b/.mvn/maven-config deleted file mode 100644 index 790e06279..000000000 --- a/.mvn/maven-config +++ /dev/null @@ -1 +0,0 @@ --s settings-read-github-packages.xml diff --git a/.mvn/settings-read-github-packages.xml b/.mvn/settings-read-github-packages.xml deleted file mode 100644 index fa1465ac2..000000000 --- a/.mvn/settings-read-github-packages.xml +++ /dev/null @@ -1,25 +0,0 @@ -<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> - -<!-- - GitHub Actions currently requires authentication even for read-only access to Maven artifacts stored in GitHub - Packages. There is no such thing as public package repositories without authentication. See here: - https://github.community/t/how-to-allow-unauthorised-read-access-to-github-packages-maven-repository/115517/4 - - How to use it: - https://github.com/jcansdale-test/maven-consume - - How to XML-encode an access token online (no problem to use the website, it is meant for public access anyway): - https://coderstoolbox.net/string/#!encoding=xml&action=encode&charset=none ---> - - <servers> - <server> - <id>github</id> - <username>kriegaex</username> - <!-- Public access token with 'read:packages' scope --> - <password>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</password> - </server> - </servers> - -</settings> |