Skip to content

Instantly share code, notes, and snippets.

@ivanursul
Created January 4, 2015 09:27
Show Gist options
  • Select an option

  • Save ivanursul/22da0b907b1ca7dca765 to your computer and use it in GitHub Desktop.

Select an option

Save ivanursul/22da0b907b1ca7dca765 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>is-lnu-migrations</groupId>
<artifactId>is-lnu-migrations</artifactId>
<name>is-lnu-migrations</name>
<url>http://maven.apache.org</url>
<parent>
<groupId>is-lnu</groupId>
<artifactId>is-lnu</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<properties>
<checkstyleDir>${basedir}/../checks</checkstyleDir>
<findBugsDir>${basedir}/../findbugs</findBugsDir>
</properties>
<dependencies>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.2.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.2.2</version>
<executions>
<execution>
<goals>
<goal>status</goal>
</goals>
</execution>
</executions>
<configuration>
<changeLogFile>${migrations.location}</changeLogFile>
<driver>${jdbc.driverClassName}</driver>
<url>${jdbc.databaseurl}</url>
<username>${jdbc.username}</username>
<password>${jdbc.password}</password>
</configuration>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901-1.jdbc4</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment