Skip to content

Commit fd98b3a

Browse files
committed
updates
1 parent 2868db2 commit fd98b3a

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -220,21 +220,21 @@
220220
<dependency>
221221
<groupId>org.springframework</groupId>
222222
<artifactId>spring-framework-bom</artifactId>
223-
<version>6.1.4</version>
223+
<version>6.1.7</version>
224224
<type>pom</type>
225225
<scope>import</scope>
226226
</dependency>
227227
<dependency>
228228
<groupId>com.oracle.database.jdbc</groupId>
229229
<artifactId>ojdbc-bom</artifactId>
230-
<version>23.3.0.23.09</version>
230+
<version>23.4.0.24.05</version>
231231
<type>pom</type>
232232
<scope>import</scope>
233233
</dependency>
234234
<dependency>
235235
<groupId>org.apache.logging.log4j</groupId>
236236
<artifactId>log4j-bom</artifactId>
237-
<version>2.23.0</version>
237+
<version>2.23.1</version>
238238
<type>pom</type>
239239
<scope>import</scope>
240240
</dependency>
@@ -286,7 +286,7 @@
286286
<dependency>
287287
<groupId>org.postgresql</groupId>
288288
<artifactId>postgresql</artifactId>
289-
<version>42.7.2</version>
289+
<version>42.7.3</version>
290290
<scope>test</scope>
291291
</dependency>
292292
<dependency>
@@ -304,13 +304,13 @@
304304
<dependency>
305305
<groupId>org.firebirdsql.jdbc</groupId>
306306
<artifactId>jaybird</artifactId>
307-
<version>5.0.3.java11</version>
307+
<version>5.0.4.java11</version>
308308
<scope>test</scope>
309309
</dependency>
310310
<dependency>
311311
<groupId>org.mariadb.jdbc</groupId>
312312
<artifactId>mariadb-java-client</artifactId>
313-
<version>3.3.3</version>
313+
<version>3.4.0</version>
314314
<scope>test</scope>
315315
<exclusions>
316316
<exclusion>
@@ -339,7 +339,7 @@
339339
</dependency>
340340
<dependency>
341341
<groupId>org.apache.logging.log4j</groupId>
342-
<artifactId>log4j-slf4j-impl</artifactId>
342+
<artifactId>log4j-slf4j2-impl</artifactId>
343343
<scope>test</scope>
344344
</dependency>
345345
<dependency>
@@ -411,7 +411,7 @@
411411
<properties>
412412
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
413413
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
414-
<hibernate.version>6.4.4.Final</hibernate.version>
414+
<hibernate.version>6.5.1.Final</hibernate.version>
415415
<project.build.outputTimestamp>2024-01-26T13:19:42Z</project.build.outputTimestamp>
416416
</properties>
417417

src/test/java/com/github/marschall/hibernate/batchsequencegenerator/configurations/OracleConfiguration.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
import org.springframework.jdbc.datasource.init.DatabasePopulator;
1212
import org.springframework.jdbc.datasource.init.ResourceDatabasePopulator;
1313

14+
import oracle.jdbc.OracleConnection;
15+
1416
@Configuration
1517
public class OracleConfiguration {
1618

@@ -23,7 +25,7 @@ public DataSource dataSource() {
2325
dataSource.setUsername("jdbc");
2426
dataSource.setPassword("Cent-Quick-Space-Bath-8");
2527
Properties connectionProperties = new Properties();
26-
connectionProperties.setProperty("oracle.net.disableOob", "true");
28+
connectionProperties.setProperty(OracleConnection.CONNECTION_PROPERTY_THIN_NET_DISABLE_OUT_OF_BAND_BREAK, "true");
2729
dataSource.setConnectionProperties(connectionProperties);
2830
return dataSource;
2931
}

src/test/resources/run_oracle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ docker run --name jdbc-oracle-23 \
77
-p 1521:1521 -p 5500:5500 \
88
--shm-size=1g \
99
-v ${DIRECTORY}/oracle:/docker-entrypoint-initdb.d/setup \
10-
-d oracle/database:23.3.0-free
10+
-d oracle/database:23.4.0-free

0 commit comments

Comments
 (0)