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.

198 lines
6.5 KiB

6 years ago
<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>
4 years ago
<groupId>xyz.wbsite</groupId>
6 years ago
<artifactId>dbtool</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
5 years ago
<version>2.1.2.RELEASE</version>
6 years ago
<relativePath/>
</parent>
<repositories>
<!-- 常用公共仓库 阿里云镜像 -->
6 years ago
<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>
6 years ago
</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>
4 years ago
<!-- mybatis -->
5 years ago
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
4 years ago
<version>1.3.2</version>
5 years ago
</dependency>
4 years ago
6 years ago
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-ehcache</artifactId>
4 years ago
<version>1.1.0</version>
6 years ago
</dependency>
4 years ago
<!-- mybatis 分页插件 -->
5 years ago
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
4 years ago
<version>1.2.5</version>
5 years ago
</dependency>
4 years ago
<!-- freemarker -->
6 years ago
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
5 years ago
<dependency>
<groupId>org.springframework.boot</groupId>
4 years ago
<artifactId>spring-boot-starter-security</artifactId>
5 years ago
</dependency>
<dependency>
4 years ago
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>2.2.6</version>
5 years ago
</dependency>
<dependency>
<groupId>net.sf.dozer</groupId>
<artifactId>dozer</artifactId>
4 years ago
<version>5.5.1</version>
</dependency>
<!-- mail 发送邮件 -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.7</version>
5 years ago
</dependency>
6 years ago
6 years ago
<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>
6 years ago
4 years ago
<dependency>
<groupId>cn.easyproject</groupId>
<artifactId>orai18n</artifactId>
<version>12.1.0.2.0</version>
</dependency>
4 years ago
<dependency>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<version>build210</version>
</dependency>
4 years ago
<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>
5 years ago
6 years ago
<build>
<!-- 项目名称 -->
<finalName>dbtool</finalName>
<!-- 默认的主代码目录 -->
<sourceDirectory>src/main/java</sourceDirectory>
<!-- 默认的测试代码目录 -->
<testSourceDirectory>src/test</testSourceDirectory>
6 years ago
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>static/node_modules/**</exclude>
<exclude>static/node_modules.zip</exclude>
</excludes>
6 years ago
</resource>
<!-- 包含java下的xml文件 -->
6 years ago
<resource>
<directory>src/main/java</directory>
6 years ago
<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>
6 years ago
</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>
6 years ago
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
6 years ago
</plugins>
</build>
</project>

Powered by TurnKey Linux.