2017-02-07 19:59:10 +01:00
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>de.hsadmin</groupId>
|
|
|
|
<artifactId>hsadmin-parent</artifactId>
|
2023-12-19 18:40:06 +01:00
|
|
|
<version>1.0.4</version>
|
2017-02-07 19:59:10 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>db-migration</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
2021-05-21 18:08:19 +02:00
|
|
|
<version>${servlet.version}</version>
|
2017-02-07 19:59:10 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2021-05-21 18:08:19 +02:00
|
|
|
<version>${liquibase.version}</version>
|
2017-02-07 19:59:10 +01:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>db-migration</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2021-05-21 18:08:19 +02:00
|
|
|
<groupId>org.apache.tomee.maven</groupId>
|
2017-02-07 19:59:10 +01:00
|
|
|
<artifactId>tomee-maven-plugin</artifactId>
|
2021-05-21 18:08:19 +02:00
|
|
|
<version>${tomee.version}</version>
|
2017-02-07 19:59:10 +01:00
|
|
|
<configuration>
|
2021-05-21 18:08:19 +02:00
|
|
|
<tomeeVersion>${tomee.version}</tomeeVersion>
|
2017-02-07 19:59:10 +01:00
|
|
|
<tomeeClassifier>webprofile</tomeeClassifier>
|
|
|
|
<debug>false</debug>
|
|
|
|
<debugPort>8000</debugPort>
|
|
|
|
<config>${project.basedir}/src/test/tomee/conf</config>
|
|
|
|
<libs>
|
2021-05-21 18:08:19 +02:00
|
|
|
<lib>${postgresql.lib}</lib>
|
2017-02-07 19:59:10 +01:00
|
|
|
</libs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-12-19 20:37:03 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</plugin>
|
|
|
|
|
2017-02-07 19:59:10 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-12-19 18:40:06 +01:00
|
|
|
</project>
|