<?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>
	<parent>
		<version>1.9.3</version>
		<groupId>cn.virens</groupId>
		<artifactId>virens-utils</artifactId>
	</parent>
	<name>virens-utils-mapper-mysql</name>
	<artifactId>virens-utils-mapper-mysql</artifactId>

	<dependencies>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.junit.jupiter</groupId>
			<artifactId>junit-jupiter</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<!-- Test Spring -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context-support</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-orm</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- Test Mybatis -->
		<dependency>
			<groupId>com.mysql</groupId>
			<artifactId>mysql-connector-j</artifactId>
			<version>${mybatis.mysql.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>druid</artifactId>
			<version>${mybatis.druid.version}</version>
			<scope>test</scope>
		</dependency>

		<!-- Mybatis组件 -->
		<dependency>
			<groupId>org.mybatis</groupId>
			<artifactId>mybatis</artifactId>
			<version>${mybatis.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.mybatis</groupId>
			<artifactId>mybatis-spring</artifactId>
			<version>${mybatis.spring.version}</version>
			<scope>provided</scope>
		</dependency>

		<!-- Mapper组件 -->
		<dependency>
			<groupId>io.mybatis</groupId>
			<artifactId>mybatis-mapper</artifactId>
			<version>${mybatis.mapper.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>io.mybatis</groupId>
			<artifactId>mybatis-service</artifactId>
			<version>${mybatis.mapper.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>io.mybatis</groupId>
			<artifactId>mybatis-activerecord</artifactId>
			<version>${mybatis.mapper.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>io.mybatis</groupId>
			<artifactId>mybatis-provider</artifactId>
			<version>2.1.1</version>
		</dependency>
		<dependency>
			<groupId>javax.persistence</groupId>
			<artifactId>javax.persistence-api</artifactId>
			<version>2.2</version>
		</dependency>

		<!-- 分页组件 -->
		<dependency>
			<groupId>com.github.pagehelper</groupId>
			<artifactId>pagehelper</artifactId>
			<version>${mybatis.page.version}</version>
			<scope>provided</scope>
		</dependency>

		<!-- spring相关依赖 -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-beans</artifactId>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-tx</artifactId>
			<scope>provided</scope>
		</dependency>

		<!-- 工具组件 -->
		<dependency>
			<groupId>cn.virens</groupId>
			<artifactId>virens-utils-common</artifactId>
		</dependency>
	</dependencies>
</project>
