<?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>cn.bootx</groupId>
        <artifactId>table-modify</artifactId>
        <version>1.5.4.beta3</version>
    </parent>

    <artifactId>table-modify-postgresql-boot-starter</artifactId>

   <dependencies>
       <!-- spring boot自动配置 -->
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-autoconfigure</artifactId>
           <version>${spring-boot.version}</version>
           <scope>provided</scope>
       </dependency>

       <!-- spring boot配置处理器 -->
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-configuration-processor</artifactId>
           <version>${spring-boot.version}</version>
           <scope>provided</scope>
       </dependency>

       <!-- 事务 -->
       <dependency>
           <groupId>org.springframework</groupId>
           <artifactId>spring-tx</artifactId>
           <version>${spring.version}</version>
           <scope>provided</scope>
       </dependency>

       <dependency>
           <groupId>cn.bootx</groupId>
           <artifactId>table-modify-postgresql</artifactId>
           <version>${table-modify.version}</version>
       </dependency>
   </dependencies>

</project>
