|
@@ -0,0 +1,292 @@
|
|
|
|
+<?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.dayou</groupId>
|
|
|
|
+ <artifactId>item-management-1phase</artifactId>
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
+ <modules>
|
|
|
|
+ <module>biz-base</module>
|
|
|
|
+ <module>common</module>
|
|
|
|
+ <module>dao</module>
|
|
|
|
+ <module>domain</module>
|
|
|
|
+ <module>service</module>
|
|
|
|
+ <module>gen</module>
|
|
|
|
+ </modules>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
+ <java.version>1.8</java.version>
|
|
|
|
+ <springboot.version>2.3.1.RELEASE</springboot.version>
|
|
|
|
+ <mybatis-plus.version>3.3.2</mybatis-plus.version>
|
|
|
|
+ <druid.version>1.1.10</druid.version>
|
|
|
|
+ <fastjson.version>1.2.72</fastjson.version>
|
|
|
|
+ <guava.version>26.0-jre</guava.version>
|
|
|
|
+ <commons-lang3.version>3.7</commons-lang3.version>
|
|
|
|
+ <commons.io.version>2.5</commons.io.version>
|
|
|
|
+ <commons.fileupload.version>1.3.3</commons.fileupload.version>
|
|
|
|
+ <mysql-connector-java.version>8.0.16</mysql-connector-java.version>
|
|
|
|
+ <resource.delimiter>@</resource.delimiter>
|
|
|
|
+ <poi.version>4.1.2</poi.version>
|
|
|
|
+ <hutool.version>5.3.3</hutool.version>
|
|
|
|
+ <pagehelper.boot.version>1.2.5</pagehelper.boot.version>
|
|
|
|
+ <jwt.version>0.9.0</jwt.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencyManagement>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <!-- SpringBoot的依赖配置 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
+ <version>${springboot.version}</version>
|
|
|
|
+ <type>pom</type>
|
|
|
|
+ <scope>import</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus</artifactId>
|
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- pagehelper 分页插件 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.pagehelper</groupId>
|
|
|
|
+ <artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
+ <version>${pagehelper.boot.version}</version>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
|
+ <version>${druid.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
+ <version>${guava.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ <version>${commons-lang3.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!--io常用工具类 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
|
+ <version>${commons.io.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <!--文件上传工具类 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
|
+ <version>${commons.fileupload.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
|
+ <artifactId>velocity-engine-core</artifactId>
|
|
|
|
+ <version>2.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
+ <version>${mysql-connector-java.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.sf.dozer</groupId>
|
|
|
|
+ <artifactId>dozer</artifactId>
|
|
|
|
+ <version>5.4.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-collections</groupId>
|
|
|
|
+ <artifactId>commons-collections</artifactId>
|
|
|
|
+ <version>3.2.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- excel工具 -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
|
+ <version>${poi.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.deepoove</groupId>
|
|
|
|
+ <artifactId>poi-tl</artifactId>
|
|
|
|
+ <version>1.8.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
|
+ <version>${hutool.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
+ <artifactId>jjwt</artifactId>
|
|
|
|
+ <version>${jwt.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
+ <version>2.8.6</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
|
+ <version>5.4.3.Final</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.coobird</groupId>
|
|
|
|
+ <artifactId>thumbnailator</artifactId>
|
|
|
|
+ <version>0.4.11</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.dozermapper</groupId>
|
|
|
|
+ <artifactId>dozer-spring-boot-starter</artifactId>
|
|
|
|
+ <version>6.5.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.github.shalousun</groupId>
|
|
|
|
+ <artifactId>smart-doc</artifactId>
|
|
|
|
+ <version>2.0.2</version>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
|
+ <version>1.4</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ </dependencies>
|
|
|
|
+ </dependencyManagement>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
+ <version>1.18.8</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
+ <optional>true</optional> <!-- 表示依赖不会传递 -->
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <configuration>
|
|
|
|
+ <source>${java.version}</source>
|
|
|
|
+ <target>${java.version}</target>
|
|
|
|
+ <encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
+ </configuration>
|
|
|
|
+ <version>3.6.0</version>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
+ <version>3.0.2</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <delimiters>
|
|
|
|
+ <delimiter>@</delimiter>
|
|
|
|
+ </delimiters>
|
|
|
|
+ <useDefaultDelimiters>false</useDefaultDelimiters>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
|
|
+ <version>2.4</version>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>attach-sources</id>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>jar</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+
|
|
|
|
+ <resources>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
+ <!--开启过滤,用指定的参数替换directory下的文件中的参数-->
|
|
|
|
+ <filtering>true</filtering>
|
|
|
|
+ <excludes>
|
|
|
|
+ <exclude>**/*.xlsx</exclude>
|
|
|
|
+ <exclude>*/*.docx</exclude>
|
|
|
|
+ </excludes>
|
|
|
|
+ </resource>
|
|
|
|
+ <resource>
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
+ <!--开启过滤,用指定的参数替换directory下的文件中的参数-->
|
|
|
|
+ <filtering>false</filtering>
|
|
|
|
+ <includes>
|
|
|
|
+ <include>**/*.xlsx</include>
|
|
|
|
+ <include>*/*.docx</include>
|
|
|
|
+ </includes>
|
|
|
|
+ </resource>
|
|
|
|
+ </resources>
|
|
|
|
+ </build>
|
|
|
|
+ <profiles>
|
|
|
|
+ <profile>
|
|
|
|
+ <id>local</id>
|
|
|
|
+ <properties>
|
|
|
|
+ <spring.active>local</spring.active>
|
|
|
|
+ </properties>
|
|
|
|
+ <activation>
|
|
|
|
+ <activeByDefault>true</activeByDefault>
|
|
|
|
+ </activation>
|
|
|
|
+ </profile>
|
|
|
|
+ <profile>
|
|
|
|
+ <id>test</id>
|
|
|
|
+ <properties>
|
|
|
|
+ <spring.active>test</spring.active>
|
|
|
|
+ </properties>
|
|
|
|
+ </profile>
|
|
|
|
+ <profile>
|
|
|
|
+ <id>prod</id>
|
|
|
|
+ <properties>
|
|
|
|
+ <spring.active>prod</spring.active>
|
|
|
|
+ </properties>
|
|
|
|
+ </profile>
|
|
|
|
+ </profiles>
|
|
|
|
+</project>
|