Skip to content

Commit d50da8a

Browse files
authored
Update README.md showing 5.x version
1 parent cdf9f11 commit d50da8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rsql-jpa-specification
22

3-
[![Maven Central (Releases)](https://img.shields.io/maven-central/v/io.github.perplexhub/rsql)](https://central.sonatype.com/search?q=io.github.perplexhub+rsql)
3+
[![Maven Central (Releases)](https://img.shields.io/maven-central/v/io.github.perplexhub/rsql?filter=5.*)](https://central.sonatype.com/search?q=io.github.perplexhub+rsql)
44
[![Release Workflow Status](https://img.shields.io/github/actions/workflow/status/perplexhub/rsql-jpa-specification/release.yml?label=Release&style=plastic)](https://github.com/perplexhub/rsql-jpa-specification/actions/workflows/release.yml)
55
[![Snapshot Workflow Status](https://img.shields.io/github/actions/workflow/status/perplexhub/rsql-jpa-specification/snapshot.yml?label=Snapshot&style=plastic)](https://github.com/perplexhub/rsql-jpa-specification/actions/workflows/snapshot.yml)
66
[![PR Workflow Status](https://img.shields.io/github/actions/workflow/status/perplexhub/rsql-jpa-specification/pull_request.yml?label=Pull%20Request&style=plastic)](https://github.com/perplexhub/rsql-jpa-specification/actions/workflows/pull_request.yml)
@@ -17,7 +17,7 @@ Translate RSQL query into org.springframework.data.jpa.domain.Specification or c
1717

1818
## Add rsql-jpa-spring-boot-starter for RSQL to Spring JPA translation
1919

20-
### Maven dependency for rsql-jpa-spring-boot-starter [![](https://img.shields.io/maven-central/v/io.github.perplexhub/rsql-jpa-spring-boot-starter?label=%20&color=black)](https://central.sonatype.com/artifact/io.github.perplexhub/rsql-jpa-spring-boot-starter/versions)
20+
### Maven dependency for rsql-jpa-spring-boot-starter [![](https://img.shields.io/maven-central/v/io.github.perplexhub/rsql-jpa-spring-boot-starter?label=%20&color=black&filter=5.*)](https://central.sonatype.com/artifact/io.github.perplexhub/rsql-jpa-spring-boot-starter/versions)
2121

2222
```xml
2323
<dependency>
@@ -43,7 +43,7 @@ public interface UserRepository extends JpaRepository<User, String>, JpaSpecific
4343

4444
## Add rsql-querydsl-spring-boot-starter for RSQL to Spring JPA and QueryDSL translation
4545

46-
### Maven dependency for rsql-querydsl-spring-boot-starter [![](https://img.shields.io/maven-central/v/io.github.perplexhub/rsql-querydsl-spring-boot-starter?label=%20&color=black)](https://central.sonatype.com/artifact/io.github.perplexhub/rsql-querydsl-spring-boot-starter/versions)
46+
### Maven dependency for rsql-querydsl-spring-boot-starter [![](https://img.shields.io/maven-central/v/io.github.perplexhub/rsql-querydsl-spring-boot-starter?label=%20&color=black&filter=5.*)](https://central.sonatype.com/artifact/io.github.perplexhub/rsql-querydsl-spring-boot-starter/versions)
4747

4848
```xml
4949
<dependency>
@@ -268,4 +268,4 @@ RSQLCustomPredicate<String> customPredicate = new RSQLCustomPredicate<>(new Comp
268268
return input.getCriteriaBuilder().isNull(input.getRoot().get("city"));
269269
});
270270
List<User> users = userRepository.findAll(toSpecification(rsql, Arrays.asList(customPredicate)));
271-
```
271+
```

0 commit comments

Comments
 (0)