Adição de historico

master
Fabio Faria 2022-11-29 13:41:26 -03:00
parent 887cf3ba48
commit 3f395f3731
2 changed files with 25 additions and 12 deletions

12
.gitignore vendored 100644
View File

@ -0,0 +1,12 @@
.classpath
.project
org.eclipse.jdt.core.prefs
org.eclipse.m2e.core.prefs
org.eclipse.wst.common.component
org.eclipse.wst.common.project.facet.core.xml
org.eclipse.wst.validation.prefs
org.jboss.ide.eclipse.as.core.prefs
/target/
/.settings/
target
.settings

25
pom.xml
View File

@ -4,25 +4,26 @@
<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>0.0.1-SNAPSHOT</version> <version>1.0.0</version>
<distributionManagement>
<repository>
<id>rj-releases</id>
<url>http://52.5.53.15:8081/nexus/content/repositories/releases/</url>
</repository>
</distributionManagement>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version> <version>3.8.1</version>
<configuration> <configuration>
<source>1.6</source> <source>1.8</source>
<target>1.6</target> <target>1.8</target>
<encoding>ISO-8859-1</encoding>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>