2014-04-22 14:40:18 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2015-03-16 15:03:27 -04: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">
|
2014-04-22 14:40:18 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>com.moparisthebest.beehive</groupId>
|
|
|
|
<artifactId>beehive</artifactId>
|
2015-08-27 15:54:42 -04:00
|
|
|
<version>1.0.5-SNAPSHOT</version>
|
2014-04-22 14:40:18 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>beehive-jdbc-mapper</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
2014-06-11 13:22:01 -04:00
|
|
|
<properties>
|
|
|
|
<maven.test.skip>false</maven.test.skip>
|
|
|
|
<maven.test.failure.ignore>false</maven.test.failure.ignore>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2017-06-06 12:41:00 -04:00
|
|
|
<groupId>com.moparisthebest.jdbcmapper</groupId>
|
|
|
|
<artifactId>querymapper</artifactId>
|
2017-06-14 17:31:27 -04:00
|
|
|
<classifier>jdk16</classifier>
|
2014-06-11 13:22:01 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-04-22 14:40:18 -04:00
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
</build>
|
|
|
|
</project>
|