diff --git a/.github/workflows/m2-settings.xml b/.github/workflows/m2-settings.xml deleted file mode 100644 index 7745a402..00000000 --- a/.github/workflows/m2-settings.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - builds.archive.org,maven2,mirror - builds.archive.org,maven2 - builds.archive.org,maven2,mirror - http://builds.archive.org/maven2 - false - - - diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 15241faf..5f1a09ba 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -29,7 +29,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven - run: mvn --settings .github/workflows/m2-settings.xml -B package --file pom.xml + run: mvn -B package --file pom.xml env: # Apparently Azure kills idle http connections after 4 minutes which can cause the build to fail # with a timeout error. Limit the connection ttl to 2 minutes to workaround this as per