Skip to content

Commit

Permalink
Merge pull request #495 from gruelbox/dependabot/maven/com.oracle.dat…
Browse files Browse the repository at this point in the history
…abase.jdbc-ojdbc11-23.3.0.23.09

Bump com.oracle.database.jdbc:ojdbc11 from 21.9.0.0 to 23.3.0.23.09
  • Loading branch information
badgerwithagun authored Mar 23, 2024
2 parents f67aedb + 73fbd37 commit 37f36ca
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc11</artifactId>
<version>21.9.0.0</version>
<version>23.3.0.23.09</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class TestOracle18 extends AbstractAcceptanceTest {
@Container
@SuppressWarnings("rawtypes")
private static final JdbcDatabaseContainer container =
new OracleContainer("gvenzl/oracle-xe:18-slim").withStartupTimeout(Duration.ofHours(1));
new OracleContainer("gvenzl/oracle-xe:18-slim-faststart")
.withStartupTimeout(Duration.ofHours(1))
.withReuse(true);

@Override
protected ConnectionDetails connectionDetails() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class TestOracle21 extends AbstractAcceptanceTest {
@Container
@SuppressWarnings("rawtypes")
private static final JdbcDatabaseContainer container =
new OracleContainer("gvenzl/oracle-xe:21-slim").withStartupTimeout(Duration.ofHours(1));
new OracleContainer("gvenzl/oracle-xe:21-slim-faststart")
.withStartupTimeout(Duration.ofHours(1))
.withReuse(true);

@Override
protected ConnectionDetails connectionDetails() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ class TestDefaultPersistorOracle18 extends AbstractPersistorTest {
@Container
@SuppressWarnings("rawtypes")
private static final JdbcDatabaseContainer container =
new OracleContainer("gvenzl/oracle-xe:18-slim").withStartupTimeout(Duration.ofHours(1));
new OracleContainer("gvenzl/oracle-xe:18-slim-faststart")
.withStartupTimeout(Duration.ofHours(1))
.withReuse(true);

private final DefaultPersistor persistor =
DefaultPersistor.builder().dialect(Dialect.ORACLE).build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class TestVirtualThreadsOracle21 extends AbstractVirtualThreadsTest {
@Container
@SuppressWarnings("rawtypes")
private static final JdbcDatabaseContainer container =
new OracleContainer("gvenzl/oracle-xe:21-slim").withStartupTimeout(Duration.ofHours(1));
new OracleContainer("gvenzl/oracle-xe:21-slim-faststart")
.withStartupTimeout(Duration.ofHours(1))
.withReuse(true);

@Override
protected ConnectionDetails connectionDetails() {
Expand Down

0 comments on commit 37f36ca

Please sign in to comment.