|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<groupId>xyz.wbsite</groupId>
|
|
|
|
|
<artifactId>dbtool</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.1.2.RELEASE</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<!-- 将中央仓库地址指向阿里云聚合仓库,提高下载速度 -->
|
|
|
|
|
<repository>
|
|
|
|
|
<id>central</id>
|
|
|
|
|
<name>Central Repository</name>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<!-- 将插件的仓库指向阿里云聚合仓库,解决低版本maven下载插件异常或提高下载速度 -->
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>central</id>
|
|
|
|
|
<name>Central Repository</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- mybatis -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.caches</groupId>
|
|
|
|
|
<artifactId>mybatis-ehcache</artifactId>
|
|
|
|
|
<version>1.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- mybatis 分页插件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.2.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- freemarker -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
<version>2.2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.dozer</groupId>
|
|
|
|
|
<artifactId>dozer</artifactId>
|
|
|
|
|
<version>5.5.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- mail 发送邮件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
|
<version>1.4.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
|
<version>3.21.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle.ojdbc</groupId>
|
|
|
|
|
<artifactId>ojdbc8</artifactId>
|
|
|
|
|
<version>19.3.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.easyproject</groupId>
|
|
|
|
|
<artifactId>orai18n</artifactId>
|
|
|
|
|
<version>12.1.0.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.ethz.ganymed</groupId>
|
|
|
|
|
<artifactId>ganymed-ssh2</artifactId>
|
|
|
|
|
<version>build210</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<!-- 项目名称 -->
|
|
|
|
|
<finalName>dbtool</finalName>
|
|
|
|
|
<!-- 默认的主代码目录 -->
|
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
|
<!-- 默认的测试代码目录 -->
|
|
|
|
|
<testSourceDirectory>src/test</testSourceDirectory>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>static/node_modules/**</exclude>
|
|
|
|
|
<exclude>static/node_modules.zip</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
<!-- 包含java下的xml文件 -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/mpr/*.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
<!--启动bat-->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>*.bat</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<targetPath>${project.basedir}/target</targetPath>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|