Bug description Could not transfer artifact io.springboot.ai:spring-ai-bom:pom:1.0.3 from/to central (https://repo.maven.apache.org/maven2): status code: 403, reason phrase: Forbidden (403)

As of recent (dont know exactly when)

Environment Local and on Github actions Spring AI 1.0.3

Steps to reproduce Declare Spring AI dependencies in pom.xml

Expected behavior The dependencies download successfully

Minimal Complete Reproducible example pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>3.3.1</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>test</groupId>
    <artifactId>test</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <spring-ai.version>1.0.3</spring-ai.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>io.springboot.ai</groupId>
                <artifactId>spring-ai-bom</artifactId>
                <version>${spring-ai.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>io.springboot.ai</groupId>
            <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
        </dependency>
    </dependencies>
</project>

Comment From: mxsl-gr

use groupId org.springframework.ai

https://github.com/spring-projects/spring-ai/issues/537

Comment From: BenjaminFaal

Good to know, thanks!

Comment From: Sisekelo

I tried the same thing no luck. Still getting a 403. any advice?