Skip to content

Commit 0f9cfab

Browse files
author
TheSnoozer
committed
Merge remote-tracking branch 'upstream/master' into jackson-databind
2 parents 2e86d4b + 7b478dd commit 0f9cfab

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.buildscript/settings.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,11 @@
66
<password>${env.CI_DEPLOY_PASSWORD}</password>
77
</server>
88
</servers>
9+
<mirrors>
10+
<mirror>
11+
<id>central-secure</id>
12+
<url>https://repo.maven.apache.org/maven2</url>
13+
<mirrorOf>central</mirrorOf>
14+
</mirror>
15+
</mirrors>
916
</settings>

.github/workflows/default-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ jobs:
9191
- name: Verify Setup of Maven ${{ matrix.maven_version }}
9292
run: bash -c "echo ${M2_HOME}; echo ${PATH}; mvn -version"
9393
- name: Install a test version with Maven
94-
run: mvn clean install -B
94+
run: mvn clean install -B --settings=./.buildscript/settings.xml
9595
- name: Run the local testversion with Maven
96-
run: mvn clean initialize -B -Pdemo -Dmaven.test.skip=true
96+
run: mvn clean initialize -B -Pdemo -Dmaven.test.skip=true --settings=./.buildscript/settings.xml
9797
- name: Validate if the testversion has produced the desired output
9898
run: /bin/bash -c '[[ -f maven/target/testing.properties ]] && cat maven/target/testing.properties || exit 1;'
9999

0 commit comments

Comments
 (0)