You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
192 lines
6.3 KiB
192 lines
6.3 KiB
<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>public</id>
|
|
<name>central仓和jcenter仓的聚合仓</name>
|
|
<layout>default</layout>
|
|
<url>https://maven.aliyun.com/nexus/content/groups/public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>google</id>
|
|
<name>google仓</name>
|
|
<layout>default</layout>
|
|
<url>https://maven.aliyun.com/repository/google</url>
|
|
</repository>
|
|
<repository>
|
|
<id>spring</id>
|
|
<name>spring仓</name>
|
|
<layout>default</layout>
|
|
<url>https://maven.aliyun.com/repository/spring</url>
|
|
</repository>
|
|
<repository>
|
|
<id>spring-plugin</id>
|
|
<name>spring-plugin仓</name>
|
|
<layout>default</layout>
|
|
<url>https://maven.aliyun.com/repository/spring-plugin</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<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>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>
|