Merge pull request 'fixes bug#AL-2027' (#13) from AL-2027 into master

Reviewed-on: http://18.235.188.113:3000/utilidades/Flyway/pulls/13
Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>
Reviewed-by: Wilian Domingues <wilian@rjconsultores.com.br>
master
fabio 2023-01-17 20:42:40 +00:00
commit 6e2458393e
1 changed files with 69 additions and 60 deletions

129
pom.xml
View File

@ -1,62 +1,71 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<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.0.15</version>
<version>1.0.14</version>
<distributionManagement>
<distributionManagement> <repository>
<repository> <id>rj-releases</id>
<id>rj-releases</id> <url>http://52.5.53.15:8081/nexus/content/repositories/releases/</url>
<url>http://52.5.53.15:8081/nexus/content/repositories/releases/</url> </repository>
</repository> </distributionManagement>
</distributionManagement>
<build>
<build> <sourceDirectory>src</sourceDirectory>
<sourceDirectory>src</sourceDirectory>
<resources>
<plugins> <resource>
<plugin> <directory>${basedir}/src</directory>
<artifactId>maven-compiler-plugin</artifactId> <includes>
<version>3.8.1</version> <include>*.*</include>
<configuration> <include>db/**</include>
<source>1.8</source> </includes>
<target>1.8</target> </resource>
<encoding>ISO-8859-1</encoding> </resources>
</configuration>
</plugin> <plugins>
</plugins> <plugin>
<finalName>${project.artifactId}</finalName> <artifactId>maven-compiler-plugin</artifactId>
</build> <version>3.8.1</version>
<configuration>
<dependencies> <source>1.8</source>
<dependency> <target>1.8</target>
<groupId>log4j</groupId> <encoding>ISO-8859-1</encoding>
<artifactId>log4j</artifactId> </configuration>
<version>1.2.12</version> </plugin>
</dependency> </plugins>
<finalName>${project.artifactId}</finalName>
<dependency> </build>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId> <dependencies>
<version>4.2.0</version> <dependency>
</dependency> <groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<dependency> <version>1.2.12</version>
<groupId>javax.servlet</groupId> </dependency>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.0</version> <dependency>
<scope>provided</scope> <groupId>org.flywaydb</groupId>
</dependency> <artifactId>flyway-core</artifactId>
<version>4.2.0</version>
<dependency> </dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId> <dependency>
<version>21.7.0.0</version> <groupId>javax.servlet</groupId>
</dependency> <artifactId>javax.servlet-api</artifactId>
<version>4.0.0</version>
</dependencies> <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>21.7.0.0</version>
</dependency>
</dependencies>
</project> </project>