File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
src/test/java/com/github/kagkarlsson/scheduler/compatibility Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ dependency-reduced-pom.xml
88.terraform
99terraform.tfstate *
1010out /
11+ * .orig
Original file line number Diff line number Diff line change 257257 </dependency >
258258 <dependency >
259259 <groupId >org.testcontainers</groupId >
260- <artifactId >oracle-xe </artifactId >
260+ <artifactId >oracle-free </artifactId >
261261 <scope >test</scope >
262262 </dependency >
263263 <dependency >
Original file line number Diff line number Diff line change 1313import org .junit .jupiter .api .BeforeAll ;
1414import org .junit .jupiter .api .BeforeEach ;
1515import org .junit .jupiter .api .Tag ;
16- import org .testcontainers .containers .OracleContainer ;
1716import org .testcontainers .junit .jupiter .Container ;
1817import org .testcontainers .junit .jupiter .Testcontainers ;
18+ import org .testcontainers .oracle .OracleContainer ;
1919
2020@ Tag ("compatibility" )
2121@ Testcontainers
2222public class Oracle11gCompatibilityTest extends CompatibilityTest {
23- @ Container private static final OracleContainer ORACLE = new OracleContainer ("gvenzl/oracle-xe" );
23+ @ Container
24+ private static final OracleContainer ORACLE =
25+ new OracleContainer ("gvenzl/oracle-free:slim-faststart" );
2426
2527 private static HikariDataSource pooledDatasource ;
2628
You can’t perform that action at this time.
0 commit comments