Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion easy-paging-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")

// The library this demo showcases. Bumped by Dependabot on new releases.
implementation("kr.devslab:easy-paging-spring-boot-starter:0.4.0")
implementation("kr.devslab:easy-paging-spring-boot-starter:0.5.0")

// H2 in-memory database — keeps the demo self-contained (no external DB).
runtimeOnly("com.h2database:h2")
Expand Down
2 changes: 1 addition & 1 deletion easy-paging-keyset-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")

// The library this demo showcases. Bumped by Dependabot on new releases.
implementation("kr.devslab:easy-paging-spring-boot-starter:0.4.0")
implementation("kr.devslab:easy-paging-spring-boot-starter:0.5.0")

// H2 in-memory database — keeps the demo self-contained (no external DB).
// Keyset pagination doesn't need a "real" DB to demonstrate; the SQL pattern
Expand Down
2 changes: 1 addition & 1 deletion easy-paging-postgres-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")

// The library this demo showcases. Bumped by Dependabot on new releases.
implementation("kr.devslab:easy-paging-spring-boot-starter:0.4.0")
implementation("kr.devslab:easy-paging-spring-boot-starter:0.5.0")

// Real PostgreSQL JDBC driver — the whole point of this demo over the H2 one
// is "does the starter actually work against a production DB?". (Spoiler: yes,
Expand Down
2 changes: 1 addition & 1 deletion easy-paging-reactive-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
// the core starter (kr.devslab:easy-paging-spring-boot-starter) transitively
// via `api(project(":core"))` so PageResponse/Pageable/etc. are available
// without an explicit dependency on it.
implementation("kr.devslab:easy-paging-spring-boot-starter-reactive:0.4.0")
implementation("kr.devslab:easy-paging-spring-boot-starter-reactive:0.5.0")

// Real PostgreSQL R2DBC driver.
runtimeOnly("org.postgresql:r2dbc-postgresql")
Expand Down
Loading