66 lines
2.0 KiB
XML
66 lines
2.0 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>test</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>${revision}${sha1}${changelist}</version>
|
|
</parent>
|
|
|
|
<artifactId>test-test</artifactId>
|
|
|
|
<properties>
|
|
<main.class>test.TestApp</main.class>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>test</groupId>
|
|
<artifactId>test-model</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.bootique.cayenne</groupId>
|
|
<artifactId>bootique-cayenne</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.bootique.agrest</groupId>
|
|
<artifactId>bootique-agrest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.agrest</groupId>
|
|
<artifactId>agrest-engine</artifactId>
|
|
<version>4.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.bootique.jdbc</groupId>
|
|
<artifactId>bootique-jdbc-hikaricp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.bootique.logback</groupId>
|
|
<artifactId>bootique-logback</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> |