123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?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>
- <groupId>com.sprivacy</groupId>
- <artifactId>pms</artifactId>
- <version>1.0</version>
- <!-- <packaging>war</packaging>-->
- <packaging>jar</packaging>
- <name>pms</name>
- <description>Personnel management platform</description>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.0.5.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- <swagger.version>2.8.0</swagger.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <!--<scope>provided</scope>-->
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>1.1.10</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.51</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>4.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>4.0.0</version>
- </dependency>
- <!-- 新入 -->
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-compress</artifactId>
- <version>1.17</version>
- </dependency>
- <dependency>
- <groupId>org.apache.xmlbeans</groupId>
- <artifactId>xmlbeans</artifactId>
- <version>3.0.2</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>3.0.5</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>joda-time</groupId>
- <artifactId>joda-time</artifactId>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>com.baomidou</groupId>-->
- <!--<artifactId>mybatis-plus</artifactId>-->
- <!--<version>2.1.8</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>3.11.0</version>
- </dependency>
- <!-- zip & rar 包 -->
- <!-- https://mvnrepository.com/artifact/com.github.junrar/junrar -->
- <dependency>
- <groupId>com.github.junrar</groupId>
- <artifactId>junrar</artifactId>
- <version>0.7</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j -->
- <dependency>
- <groupId>net.lingala.zip4j</groupId>
- <artifactId>zip4j</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>1.0.3</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>commons-logging</groupId>-->
- <!--<artifactId>commons-logging</artifactId>-->
- <!--<version>1.2</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.apache.commons</groupId>-->
- <!--<artifactId>commons-vfs2</artifactId>-->
- <!--<version>2.2</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.apache.commons</groupId>-->
- <!--<artifactId>commons-io</artifactId>-->
- <!--<version>1.3.2</version>-->
- <!--<scope>test</scope>-->
- <!--</dependency>-->
- <!-- 导入zip解压包 -->
- <!--<dependency>-->
- <!--<groupId>org.apache.ant</groupId>-->
- <!--<artifactId>ant</artifactId>-->
- <!--<version>1.6.5</version>-->
- <!--</dependency>-->
- <!--<!–<dependency>–>-->
- <!--<!–<groupId>ant</groupId>–>-->
- <!--<!–<artifactId>ant</artifactId>–>-->
- <!--<!–<version>1.6.5</version>–>-->
- <!--<!–</dependency>–>-->
- <!--<!– new –>-->
- <!--<!– https://mvnrepository.com/artifact/com.github.junrar/junrar –>-->
- <!--<dependency>-->
- <!--<groupId>com.github.junrar</groupId>-->
- <!--<artifactId>junrar</artifactId>-->
- <!--<version>4.0.0</version>-->
- <!--</dependency>-->
- <!--<!– 导入rar解压包 –>-->
- <!--<dependency>-->
- <!--<groupId>com.github.junrar</groupId>-->
- <!--<artifactId>junrar</artifactId>-->
- <!--<version>3.1.0</version>-->
- <!--</dependency>-->
- <!-- <dependency>-->
- <!--<groupId>commons-fileupload</groupId>-->
- <!--<artifactId>commons-fileupload</artifactId>-->
- <!--<version>1.3.1</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>commons-io</groupId>-->
- <!--<artifactId>commons-io</artifactId>-->
- <!--<version>2.4</version>-->
- <!--</dependency>-->
- <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
- <!--<dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.2</version>
- </dependency>
- <!– https://mvnrepository.com/artifact/org.gnu/gnu-crypto –>
- <dependency>
- <groupId>org.gnu</groupId>
- <artifactId>gnu-crypto</artifactId>
- <version>2.0.1</version>
- </dependency>
- <!– https://mvnrepository.com/artifact/commons-io/commons-io –>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.6</version>
- </dependency>
- <!– https://mvnrepository.com/artifact/com.github.junrar/junrar –>
- <dependency>
- <groupId>com.github.junrar</groupId>
- <artifactId>junrar</artifactId>
- <version>3.1.0</version>
- </dependency>-->
- <!--<!–处理2003 excel–>-->
- <!--<dependency>-->
- <!--<groupId>org.apache.poi</groupId>-->
- <!--<artifactId>poi</artifactId>-->
- <!--<version>3.16</version>-->
- <!--</dependency>-->
- <!--<!–处理2007 excel–>-->
- <!--<dependency>-->
- <!--<groupId>org.apache.poi</groupId>-->
- <!--<artifactId>poi-ooxml</artifactId>-->
- <!--<version>3.16</version>-->
- <!--</dependency>-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|