Skip to content

Commit 5c8737f

Browse files
authored
Merge pull request #5698 from line-o/switch-nexus
[bugfix] reenable builds by switching to a different nexus
2 parents 1fd7e58 + 1b046ee commit 5c8737f

File tree

2 files changed

+72
-6
lines changed

2 files changed

+72
-6
lines changed

.github/workflows/ci-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ jobs:
5858
file-version-suffix: ''
5959
cache: 'true'
6060
- name: Maven Build
61-
timeout-minutes: 10
62-
run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -V -B -T 1C compile test-compile -DtrimStackTrace=false -D'dependency-check.skip' -D'license.skip'
61+
timeout-minutes: 30
62+
run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -V -B -U -T 1C compile test-compile -DtrimStackTrace=false -D'dependency-check.skip' -D'license.skip'
6363
- name: Maven Test
6464
timeout-minutes: 60
6565
run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -V -B verify -DtrimStackTrace=false -D'dependency-check.skip' -D'license.skip' -D'mvnd.maxLostKeepAlive=6000'

exist-parent/pom.xml

+70-4
Original file line numberDiff line numberDiff line change
@@ -1105,6 +1105,39 @@
11051105
<repositories>
11061106
<repository>
11071107
<id>exist-db-snapshots</id>
1108+
<name>exist-db.org - eXist-db Snapshots</name>
1109+
<url>https://repo.exist-db.org/repository/exist-db-snapshots/</url>
1110+
<releases>
1111+
<enabled>false</enabled>
1112+
</releases>
1113+
<snapshots>
1114+
<enabled>true</enabled>
1115+
</snapshots>
1116+
</repository>
1117+
<repository>
1118+
<id>exist-db</id>
1119+
<name>exist-db.org - eXist-db Releases</name>
1120+
<url>https://repo.exist-db.org/repository/exist-db/</url>
1121+
<releases>
1122+
<enabled>true</enabled>
1123+
</releases>
1124+
<snapshots>
1125+
<enabled>false</enabled>
1126+
</snapshots>
1127+
</repository>
1128+
<repository>
1129+
<id>exist-db-maven-central-mirror</id>
1130+
<name>exist-db.org - eXist-db Releases</name>
1131+
<url>https://repo.exist-db.org/repository/maven-central/</url>
1132+
<releases>
1133+
<enabled>true</enabled>
1134+
</releases>
1135+
<snapshots>
1136+
<enabled>false</enabled>
1137+
</snapshots>
1138+
</repository>
1139+
<repository>
1140+
<id>evolvedbinary-snapshots</id>
11081141
<name>Evolved Binary - eXist-db Snapshots</name>
11091142
<url>https://repo.evolvedbinary.com/repository/exist-db-snapshots/</url>
11101143
<releases>
@@ -1115,7 +1148,7 @@
11151148
</snapshots>
11161149
</repository>
11171150
<repository>
1118-
<id>exist-db</id>
1151+
<id>evolvedbinary-releases</id>
11191152
<name>Evolved Binary - eXist-db Releases</name>
11201153
<url>https://repo.evolvedbinary.com/repository/exist-db/</url>
11211154
<releases>
@@ -1134,6 +1167,39 @@
11341167
</pluginRepository>
11351168
<pluginRepository>
11361169
<id>exist-db</id>
1170+
<name>exist-db.org - eXist-db Releases</name>
1171+
<url>https://repo.exist-db.org/repository/exist-db/</url>
1172+
<releases>
1173+
<enabled>true</enabled>
1174+
</releases>
1175+
<snapshots>
1176+
<enabled>false</enabled>
1177+
</snapshots>
1178+
</pluginRepository>
1179+
<pluginRepository>
1180+
<id>exist-db-maven-central-mirror</id>
1181+
<name>exist-db.org - eXist-db Releases</name>
1182+
<url>https://repo.exist-db.org/repository/maven-central/</url>
1183+
<releases>
1184+
<enabled>true</enabled>
1185+
</releases>
1186+
<snapshots>
1187+
<enabled>false</enabled>
1188+
</snapshots>
1189+
</pluginRepository>
1190+
<pluginRepository>
1191+
<id>exist-db-snapshots</id>
1192+
<name>exist-db.org - eXist-db Snapshots</name>
1193+
<url>https://repo.exist-db.org/repository/exist-db-snapshots/</url>
1194+
<releases>
1195+
<enabled>false</enabled>
1196+
</releases>
1197+
<snapshots>
1198+
<enabled>true</enabled>
1199+
</snapshots>
1200+
</pluginRepository>
1201+
<pluginRepository>
1202+
<id>evolvedbinary-releases</id>
11371203
<name>Evolved Binary - eXist-db Releases</name>
11381204
<url>https://repo.evolvedbinary.com/repository/exist-db/</url>
11391205
<releases>
@@ -1144,7 +1210,7 @@
11441210
</snapshots>
11451211
</pluginRepository>
11461212
<pluginRepository>
1147-
<id>exist-db-snapshots</id>
1213+
<id>evolvedbinary-snapshots</id>
11481214
<name>Evolved Binary - eXist-db Snapshots</name>
11491215
<url>https://repo.evolvedbinary.com/repository/exist-db-snapshots/</url>
11501216
<releases>
@@ -1159,8 +1225,8 @@
11591225
<distributionManagement>
11601226
<snapshotRepository>
11611227
<id>exist-db-snapshots</id>
1162-
<name>Evolved Binary - eXist-db Snapshots</name>
1163-
<url>https://repo.evolvedbinary.com/repository/exist-db-snapshots/</url>
1228+
<name>exist-db.org - eXist-db Snapshots</name>
1229+
<url>https://repo.exist-db.org/repository/exist-db-snapshots/</url>
11641230
</snapshotRepository>
11651231
<repository>
11661232
<id>sonatype-nexus-staging</id>

0 commit comments

Comments
 (0)