Skip to content

Commit 1394e96

Browse files
committed
General dependency update + remove lombok
- org.firebirdsql.jdbc:jaybird to 4.0.4.java8 - junit:junit to 4.13.2 - ch.qos.logback:logback-classic to 1.2.9 - com.zaxxer:HikariCP to 5.0.0 - Bump Maven plugin versions
1 parent c0d30a8 commit 1394e96

File tree

2 files changed

+12
-18
lines changed

2 files changed

+12
-18
lines changed

pom.xml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@
3838
<maven.compiler.target>1.8</maven.compiler.target>
3939

4040
<testcontainers.version>1.15.1</testcontainers.version>
41-
<lombok.version>1.18.12</lombok.version>
42-
<jaybird.version>4.0.2.java8</jaybird.version>
41+
<jaybird.version>4.0.4.java8</jaybird.version>
4342
</properties>
4443

4544
<dependencies>
@@ -51,14 +50,7 @@
5150
<dependency>
5251
<groupId>junit</groupId>
5352
<artifactId>junit</artifactId>
54-
<version>4.13.1</version>
55-
</dependency>
56-
57-
<dependency>
58-
<groupId>org.projectlombok</groupId>
59-
<artifactId>lombok</artifactId>
60-
<version>${lombok.version}</version>
61-
<scope>provided</scope>
53+
<version>4.13.2</version>
6254
</dependency>
6355

6456
<dependency>
@@ -71,7 +63,7 @@
7163
<dependency>
7264
<groupId>ch.qos.logback</groupId>
7365
<artifactId>logback-classic</artifactId>
74-
<version>1.2.3</version>
66+
<version>1.2.9</version>
7567
<scope>test</scope>
7668
</dependency>
7769
<dependency>
@@ -83,7 +75,7 @@
8375
<dependency>
8476
<groupId>com.zaxxer</groupId>
8577
<artifactId>HikariCP</artifactId>
86-
<version>3.4.5</version>
78+
<version>5.0.0</version>
8779
<scope>test</scope>
8880
</dependency>
8981
</dependencies>
@@ -100,7 +92,7 @@
10092
<plugin>
10193
<groupId>org.apache.maven.plugins</groupId>
10294
<artifactId>maven-jar-plugin</artifactId>
103-
<version>3.1.2</version>
95+
<version>3.2.0</version>
10496
<configuration>
10597
<archive>
10698
<manifestEntries>
@@ -133,7 +125,7 @@
133125
<plugin>
134126
<groupId>org.apache.maven.plugins</groupId>
135127
<artifactId>maven-source-plugin</artifactId>
136-
<version>3.1.0</version>
128+
<version>3.2.1</version>
137129
<executions>
138130
<execution>
139131
<id>attach-sources</id>
@@ -146,7 +138,7 @@
146138
<plugin>
147139
<groupId>org.apache.maven.plugins</groupId>
148140
<artifactId>maven-javadoc-plugin</artifactId>
149-
<version>3.1.0</version>
141+
<version>3.3.1</version>
150142
<executions>
151143
<execution>
152144
<id>attach-javadocs</id>
@@ -159,7 +151,7 @@
159151
<plugin>
160152
<groupId>org.apache.maven.plugins</groupId>
161153
<artifactId>maven-gpg-plugin</artifactId>
162-
<version>1.6</version>
154+
<version>3.0.1</version>
163155
<executions>
164156
<execution>
165157
<id>sign-artifacts</id>

src/main/java/org/firebirdsql/testcontainers/FirebirdContainer.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
package org.firebirdsql.testcontainers;
22

3-
import lombok.extern.slf4j.Slf4j;
3+
import org.slf4j.Logger;
4+
import org.slf4j.LoggerFactory;
45
import org.testcontainers.containers.JdbcDatabaseContainer;
56
import org.testcontainers.utility.DockerImageName;
67

78
import javax.crypto.Cipher;
89
import java.security.NoSuchAlgorithmException;
910
import java.time.ZoneId;
1011

11-
@Slf4j
1212
public class FirebirdContainer<SELF extends FirebirdContainer<SELF>> extends JdbcDatabaseContainer<SELF> {
1313

14+
private static final Logger log = LoggerFactory.getLogger(FirebirdContainer.class);
15+
1416
public static final String NAME = "firebird";
1517
public static final String ALTERNATE_NAME = "firebirdsql";
1618
public static final String IMAGE = "jacobalberty/firebird";

0 commit comments

Comments
 (0)