<?xml version="1.0" encoding="UTF-8"?>
<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>
    <groupId>com.github.luues</groupId>
    <artifactId>spring-boot</artifactId>
    <version>1.0.6.RELEASE</version>
  </parent>
  <groupId>com.github.luues</groupId>
  <artifactId>spring-boot-starter-jdbc-plus</artifactId>
  <version>1.0.0.RELEASE</version>
  <name>${project.artifactId}</name>
  <description>A simple spring jdbcTemplate-based encapsulation</description>
  <url>https://github.com/luues/spring-luues/tree/master/spring-boot/${project.name}</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:https://github.com/luues/spring-luues.git</connection>
    <developerConnection>scm:git:https://github.com/luues/spring-luues.git</developerConnection>
    <url>https://github.com/luues/spring-luues/tree/master/spring-boot/${project.name}</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.github.luues</groupId>
      <artifactId>spring-boot-starter-pom</artifactId>
      <version>1.0.6.RELEASE</version>
      <type>pom</type>
    </dependency>
    <dependency>
      <groupId>com.github.luues</groupId>
      <artifactId>spring-boot-starter-bean</artifactId>
      <version>1.0.6.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>com.github.luues</groupId>
      <artifactId>spring-boot-starter-exception</artifactId>
      <version>1.0.6.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>com.github.luues</groupId>
      <artifactId>commons-util</artifactId>
      <version>1.0.6.1.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-jdbc</artifactId>
      <version>RELEASE</version>
    </dependency>
    <dependency>
      <groupId>com.alibaba</groupId>
      <artifactId>druid-spring-boot-starter</artifactId>
      <version>1.1.22</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.zaxxer</groupId>
      <artifactId>HikariCP-java7</artifactId>
      <version>2.4.13</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-configuration-processor</artifactId>
      <version>RELEASE</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.0</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.jetbrains</groupId>
      <artifactId>annotations</artifactId>
      <version>19.0.0</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>p6spy</groupId>
      <artifactId>p6spy</artifactId>
      <version>3.8.7</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>io.seata</groupId>
      <artifactId>seata-all</artifactId>
      <version>1.2.0</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib</artifactId>
      <version>3.3.0</version>
    </dependency>
    <dependency>
      <groupId>com.github.jsqlparser</groupId>
      <artifactId>jsqlparser</artifactId>
      <version>3.1</version>
    </dependency>
    <dependency>
      <groupId>commons-beanutils</groupId>
      <artifactId>commons-beanutils</artifactId>
      <version>1.9.4</version>
    </dependency>
  </dependencies>
  <build>
    <finalName>${project.name}</finalName>
  </build>
</project>
