Skip to content

Commit

Permalink
docs: address the need to add Spring Milestone Repository to account …
Browse files Browse the repository at this point in the history
…for the recent integration with the Spring AI (#gh-467)
  • Loading branch information
bsbodden committed Jun 14, 2024
1 parent d97c3e1 commit acd3c59
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,27 @@ Iterable<MyDoc> allMatches = repository.findAll(example);
</dependency>
```

> ⚠️ Redis OM Spring versions greater than `v0.9.2` require the addition
of the [**Spring Milestone Repository**](https://repo.spring.io/milestone) to account
for the recent integration with the [**Spring AI**](https://docs.spring.io/spring-ai/reference/) project. When Spring AI `v1.0.0` is
released we will drop this requirement.

```xml
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
```

of if using Gradle:

```groovy
repositories {
maven("https://repo.spring.io/milestone" )
}
```

#### Explicitly configuring OM as an annotation processor

For Maven, things normally just work, when you run `./mvnw spring-boot:run`. Some users have experienced this not being
Expand Down

0 comments on commit acd3c59

Please sign in to comment.