fixes bug #AL-3470

master
valdevir 2024-02-20 15:30:41 -03:00
parent 2bc4487e8d
commit 6e06ecf5bc
2 changed files with 9 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>Flyway</artifactId> <artifactId>Flyway</artifactId>
<version>1.28.0</version> <version>1.29.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>
@ -54,9 +54,9 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j</artifactId> <artifactId>log4j-core</artifactId>
<version>1.2.12</version> <version>2.17.1</version>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -18,14 +18,15 @@ import java.util.Map;
import javax.sql.DataSource; import javax.sql.DataSource;
import org.apache.log4j.Logger; import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.flywaydb.core.Flyway; import org.flywaydb.core.Flyway;
import org.flywaydb.core.api.callback.FlywayCallback; import org.flywaydb.core.api.callback.FlywayCallback;
import com.rjconsultores.ventaboletos.vo.FlyWayCustomDetail; import com.rjconsultores.ventaboletos.vo.FlyWayCustomDetail;
public class FlyWay { public class FlyWay {
private static final Logger log = Logger.getLogger(FlyWay.class); private static final Logger log = LogManager.getLogger(FlyWay.class);
private static final FlyWay INSTANCE = new FlyWay(); private static final FlyWay INSTANCE = new FlyWay();