<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.12.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
|
<groupId>com.whyc</groupId>
|
<artifactId>CadDrawManager</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>CadDrawManager</name>
|
<description>CadDrawManager</description>
|
|
<properties>
|
<java.version>1.8</java.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<scope>runtime</scope>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>6.0.6</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
<version>2.8.5</version>
|
</dependency>
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
|
<!--shiro-->
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-spring-boot-web-starter</artifactId>
|
<version>1.5.3</version>
|
</dependency>
|
|
<!--mybatis 及mybatis-plus-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.1.2</version>
|
</dependency>
|
|
<!--knife4j-->
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
<version>2.0.2</version>
|
<!--<version>2.0.6</version>-->
|
<!--<exclusions>
|
<exclusion>
|
<groupId>org.springframework.plugin</groupId>
|
<artifactId>spring-plugin-core</artifactId>
|
</exclusion>
|
</exclusions>-->
|
</dependency>
|
|
<!--连接池-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-extension</artifactId>
|
<version>3.1.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.10</version>
|
</dependency>
|
|
<!--pageHelper分页-->
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>1.2.5</version>
|
</dependency>
|
<!--lombok插件-->
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<!--common-codec加密-->
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>1.10</version>
|
</dependency>
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
<version>1.54</version>
|
</dependency>
|
<!--添加aop-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<!--poi-->
|
<!--<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.10.1</version>
|
</dependency>-->
|
<dependency>
|
<groupId>com.deepoove</groupId>
|
<artifactId>poi-tl</artifactId>
|
<version>1.5.1</version>
|
</dependency>
|
<!--websocket-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
<!--commons.lang3 RSA签名验证md5使用-->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.4</version>
|
</dependency>
|
<!--zip和rar压缩包使用 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-compress</artifactId>
|
<version>1.12</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.junrar</groupId>
|
<artifactId>junrar</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
<!--外部引入-->
|
<dependency>
|
<groupId>com.whyc</groupId>
|
<artifactId>face</artifactId>
|
<version>1.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/arcsoft-sdk-face-3.0.0.0.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>com.whyc</groupId>
|
<artifactId>face-linux</artifactId>
|
<version>1.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/arcsoft-sdk-face-3.0.0.0_linux.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>net.sf.jacob-project</groupId>
|
<artifactId>jacob</artifactId>
|
<version>1.17-M2</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/jacob.jar</systemPath>
|
</dependency>
|
|
<dependency>
|
<groupId>com.enterprisedt</groupId>
|
<artifactId>edtFTPj</artifactId>
|
<version>2.5.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/edtftpj.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>com.enterprisedt</groupId>
|
<artifactId>edtFTPj-libs</artifactId>
|
<version>2.5.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/junit.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>net.lingala.zip4j</groupId>
|
<artifactId>zip4j</artifactId>
|
<version>1.3.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aspose</groupId>
|
<artifactId>aspose-cad</artifactId>
|
<version>22.3</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/aspose-cad-22.3-jdk16.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>com.aspose</groupId>
|
<artifactId>aspose-words</artifactId>
|
<version>15.8.0</version>
|
<scope>system</scope>
|
<systemPath>${pom.basedir}/src/main/resources/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-mail</artifactId>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<!--必须是这个1.4.2版本!!!否则打成jar无法访问页面!!-->
|
<version>1.4.2.RELEASE</version>
|
<configuration>
|
<!-- 工程主入口-->
|
<mainClass>com.whyc.CadDrawManagerApplication</mainClass>
|
<fork>true</fork>
|
<includeSystemScope>true</includeSystemScope><!--添加此项-->
|
</configuration>
|
</plugin>
|
</plugins>
|
|
<!-- 指定资源文件的位置,否则maven打包的时候不会把文件打包进去,导致thymeleaf无法解析 -->
|
<resources>
|
<resource>
|
<directory>src/main/resources</directory>
|
</resource>
|
<resource>
|
<directory>src/main/webapp</directory>
|
<targetPath>META-INF/resources</targetPath>
|
<includes>
|
<include>**/**</include>
|
</includes>
|
</resource>
|
|
</resources>
|
</build>
|
|
</project>
|