This is an automated email from the ASF dual-hosted git repository. lhotari pushed a commit to branch branch-3.3 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 596d7178b79f0432899c06f599bb4d2991d0767e 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 68b222f7579..d951e661fc2 100644 --- a/pom.xml +++ b/pom.xml @@ -2969,20 +2969,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 41173d46b2a..01007f4cd5f 100644 --- a/pulsar-io/kafka-connect-adaptor/pom.xml +++ b/pulsar-io/kafka-connect-adaptor/pom.xml @@ -237,4 +237,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 25519b187d7..e1958bba5f6 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>
