This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-4.0 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 6a154f8c7225fe6188d34abffe3f9126e6ea14e6 Author: Lari Hotari <[email protected]> AuthorDate: Fri Nov 14 13:13:44 2025 +0200 [fix][build] Remove Confluent and Restlet maven repositories from top level pom.xml (#24981) (cherry picked from commit 2c9fc9400a70ae2ac8bd89212b75248a7a4c9195) --- pom.xml | 15 --------------- pulsar-io/kafka-connect-adaptor/pom.xml | 10 ++++++++++ pulsar-io/kafka/pom.xml | 10 ++++++++++ 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/pom.xml b/pom.xml index f98add59e8f..c48c8b309ee 100644 --- a/pom.xml +++ b/pom.xml @@ -3062,20 +3062,5 @@ flexible messaging model and an intuitive client API.</description> <enabled>false</enabled> </snapshots> </repository> - <repository> - <id>confluent</id> - <url>https://packages.confluent.io/maven/</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - <repository> - <id>maven.restlet.org</id> - <name>maven.restlet.org</name> - <url>https://maven.restlet.talend.com</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> </repositories> </project> diff --git a/pulsar-io/kafka-connect-adaptor/pom.xml b/pulsar-io/kafka-connect-adaptor/pom.xml index 9961dcf081c..e9df346aa8a 100644 --- a/pulsar-io/kafka-connect-adaptor/pom.xml +++ b/pulsar-io/kafka-connect-adaptor/pom.xml @@ -249,4 +249,14 @@ </plugin> </plugins> </build> + + <repositories> + <repository> + <id>confluent</id> + <url>https://packages.confluent.io/maven/</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> </project> diff --git a/pulsar-io/kafka/pom.xml b/pulsar-io/kafka/pom.xml index d90f0cfe18d..0b5e39e5ff8 100644 --- a/pulsar-io/kafka/pom.xml +++ b/pulsar-io/kafka/pom.xml @@ -159,4 +159,14 @@ </plugin> </plugins> </build> + + <repositories> + <repository> + <id>confluent</id> + <url>https://packages.confluent.io/maven/</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> </project>
