Skip to content
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
5 changes: 2 additions & 3 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,9 @@ jobs:
restore-keys: |
${{ needs.configure.outputs.m2-monthly-branch-cache-key }}-
${{ needs.configure.outputs.m2-monthly-cache-key }}-
- name: Populate the cache
if: github.event_name == 'push' && github.repository == 'quarkusio/quarkus' && github.actor != 'dependabot[bot]'
- name: Populate the .m2 repository (for cache and for shipping to follow-up builds)
run: |
./mvnw -T2C $COMMON_MAVEN_ARGS dependency:go-offline
./mvnw -T2C $COMMON_MAVEN_ARGS dependency:go-offline -Dgo-offline
- name: Cache Develocity local cache
uses: actions/cache@v4
if: github.event_name == 'pull_request'
Expand Down
1 change: 1 addition & 0 deletions .mvn/rrf/groupId-confluent.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
io.confluent
org.apache.kafka
19 changes: 19 additions & 0 deletions core/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,23 @@
</build>
</profile>
</profiles>

<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>gradle</id>
<name>Gradle releases repository</name>
<url>https://repo.gradle.org/artifactory/libs-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
18 changes: 18 additions & 0 deletions core/launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,22 @@
</plugins>
</build>

<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>gradle</id>
<name>Gradle releases repository</name>
<url>https://repo.gradle.org/artifactory/libs-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
26 changes: 26 additions & 0 deletions devtools/bom-descriptor-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,32 @@
or further upstream might have been changed, requiring all IT modules to be built! -->

<profiles>
<profile>
<!-- Unfortunately, the go-offline plugin doesn't respect exclusions, see https://github.com/apache/maven-dependency-plugin/issues/1350 -->
<id>go-offline</id>
<activation>
<property>
<name>go-offline</name>
</property>
</activation>
<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>confluent</id>
<url>https://packages.confluent.io/maven/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>bom-descriptor-json-hollow</id>
<activation>
Expand Down
19 changes: 19 additions & 0 deletions devtools/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,23 @@
</properties>
</profile>
</profiles>

<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>gradle</id>
<name>Gradle releases repository</name>
<url>https://repo.gradle.org/artifactory/libs-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
26 changes: 26 additions & 0 deletions docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3744,5 +3744,31 @@
</plugins>
</build>
</profile>
<profile>
<!-- Unfortunately, the go-offline plugin doesn't respect exclusions, see https://github.com/apache/maven-dependency-plugin/issues/1350 -->
<id>go-offline</id>
<activation>
<property>
<name>go-offline</name>
</property>
</activation>
<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>confluent</id>
<url>https://packages.confluent.io/maven/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
</project>
18 changes: 18 additions & 0 deletions test-framework/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,22 @@
</dependency>
</dependencies>

<repositories>
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>gradle</id>
<name>Gradle releases repository</name>
<url>https://repo.gradle.org/artifactory/libs-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
Loading