Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Google Mirror also for Initial JDK 11 Build #14375

Merged
merged 2 commits into from
Jan 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 4 additions & 19 deletions .github/mvn-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,24 @@
</servers>
<profiles>
<profile>
<id>google-mirror-jboss-proxy</id>
<id>google-mirror</id>
<repositories>
<repository>
<id>google-maven-central</id>
<name>GCS Maven Central mirror EU</name>
<url>https://maven-central-eu.storage-download.googleapis.com/repos/central/data/</url>
</repository>
<repository>
<id>jboss-maven-central-proxy</id>
<name>JBoss Maven Central proxy</name>
<url>https://repository.jboss.org/nexus/content/repositories/central/</url>
</repository>
<repository>
<id>gradle-official-repository</id>
<name>Gradle Official Repository</name>
<url>https://repo.gradle.org/gradle/libs-releases-local/</url>
<url>https://maven-central.storage-download.googleapis.com/maven2/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>google-maven-central</id>
<name>GCS Maven Central mirror EU</name>
<url>https://maven-central-eu.storage-download.googleapis.com/repos/central/data/</url>
</pluginRepository>
<pluginRepository>
<id>jboss-maven-central-proxy</id>
<name>JBoss Maven Central proxy</name>
<url>https://repository.jboss.org/nexus/content/repositories/central/</url>
<url>https://maven-central.storage-download.googleapis.com/maven2/</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>google-mirror-jboss-proxy</activeProfile>
<activeProfile>google-mirror</activeProfile>
</activeProfiles>
</settings>
2 changes: 1 addition & 1 deletion .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
key: q2maven-${{ steps.get-date.outputs.date }}
- name: Build
run: |
mvn -e -B -DskipTests -DskipITs -Dno-format clean install
mvn -e -B -DskipTests -DskipITs -Dno-format --settings .github/mvn-settings.xml clean install
- name: Tar Maven Repo
shell: bash
run: tar -czf maven-repo.tgz -C ~ .m2/repository
Expand Down