Bug description We are unable to pull spring ai jars from maven. https://repo.maven.apache.org/maven2/group/springframework/ai/ shows HTTP 403
Environment NA
Steps to reproduce Add this depdency in maven pom.xml
<!-- https://mvnrepository.com/artifact/group.springframework.ai/spring-ai-openai-spring-boot-starter -->
<dependency>
<groupId>group.springframework.ai</groupId>
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
<version>1.1.0</version>
</dependency>
and run mvn clean compile
. It throws this error
Could not transfer artifact group.springframework.ai:spring-ai-openai-spring-boot-starter:pom:1.1.0 from/to central (https://repo.maven.apache.org/maven2): status code: 403, reason phrase: Forbidden (403)
Visiting https://repo.maven.apache.org/maven2/group/springframework/ai/ shows HTTP 403
Expected behavior maven pulls dependencies without error
Minimal Complete Reproducible example
We should be good if mvn compile
works without any errors with the dependency mentioned above.