BAEL-19376 Do we have any Spring Milestone/RC repos defined?

- Removed spring milestone repositories dependencies, used Central GA releases as a fix
This commit is contained in:
Dhawal Kapil
2019-12-22 18:50:33 +05:30
parent 3f52bb890f
commit 4d4328da8b
7 changed files with 14 additions and 118 deletions
@@ -1,8 +1,10 @@
package com.baeldung.r2dbc.repository;
import com.baeldung.r2dbc.model.Player;
import org.springframework.data.r2dbc.repository.query.Query;
import org.springframework.data.r2dbc.repository.Query;
import org.springframework.data.repository.reactive.ReactiveCrudRepository;
import com.baeldung.r2dbc.model.Player;
import reactor.core.publisher.Flux;
public interface PlayerRepository extends ReactiveCrudRepository<Player, Integer> {
@@ -43,8 +43,7 @@ public class R2dbcApplicationIntegrationTest {
"DROP TABLE IF EXISTS player;",
"CREATE table player (id INT AUTO_INCREMENT NOT NULL, name VARCHAR2, age INT NOT NULL);");
statements.forEach(it -> client.execute() //
.sql(it) //
statements.forEach(it -> client.execute(it) //
.fetch() //
.rowsUpdated() //
.as(StepVerifier::create) //