57 lines
1.7 KiB
XML
57 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>test</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>${revision}${sha1}${changelist}</version>
|
|
</parent>
|
|
|
|
<artifactId>test-db</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>DB</name>
|
|
|
|
<properties>
|
|
<main.class>test.DbApp</main.class>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>test</groupId>
|
|
<artifactId>test-model</artifactId>
|
|
</dependency>
|
|
|
|
<!--BQ deps-->
|
|
<dependency>
|
|
<groupId>io.bootique.liquibase</groupId>
|
|
<artifactId>bootique-liquibase</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.bootique.logback</groupId>
|
|
<artifactId>bootique-logback</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.bootique.jdbc</groupId>
|
|
<artifactId>bootique-jdbc-hikaricp-instrumented</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|