git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@60928 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdevir 2016-09-29 20:05:07 +00:00
parent c496694127
commit 7001b7fb5a
1 changed files with 44 additions and 43 deletions

87
pom.xml
View File

@ -1,44 +1,45 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" 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"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>Flyway</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>Flyway</artifactId> <groupId>Flyway</groupId>
<version>0.0.1-SNAPSHOT</version> <artifactId>Flyway</artifactId>
<dependencies> <version>0.0.1-SNAPSHOT</version>
<dependency> <dependencies>
<groupId>log4j</groupId> <dependency>
<artifactId>log4j</artifactId> <groupId>log4j</groupId>
<version>1.2.12</version> <artifactId>log4j</artifactId>
</dependency> <version>1.2.12</version>
<dependency> </dependency>
<groupId>org.flywaydb</groupId> <dependency>
<artifactId>flyway-core</artifactId> <groupId>org.flywaydb</groupId>
<version>4.0.1</version> <artifactId>flyway-core</artifactId>
</dependency> <version>4.0.1</version>
<dependency> </dependency>
<groupId>javax.servlet</groupId> <dependency>
<artifactId>servlet-api</artifactId> <groupId>javax.servlet</groupId>
<version>2.5</version> <artifactId>servlet-api</artifactId>
</dependency> <version>2.5</version>
</dependencies> </dependency>
<build> </dependencies>
<sourceDirectory>src</sourceDirectory> <build>
<resources> <sourceDirectory>src</sourceDirectory>
<resource> <resources>
<directory>src</directory> <resource>
<excludes> <directory>src</directory>
<exclude>**/*.java</exclude> <excludes>
</excludes> <exclude>**/*.java</exclude>
</resource> </excludes>
</resources> </resource>
<plugins> </resources>
<plugin> <plugins>
<artifactId>maven-compiler-plugin</artifactId> <plugin>
<version>3.3</version> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <version>3.3</version>
<source>1.6</source> <configuration>
<target>1.6</target> <source>1.6</source>
</configuration> <target>1.6</target>
</plugin> </configuration>
</plugins> </plugin>
</build> </plugins>
</build>
</project> </project>