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
@@ -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) //