|
@@ -1,373 +1,374 @@
|
|
|
-<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>org.jeecgframework.boot</groupId>
|
|
|
|
|
- <artifactId>happy-boot-parent</artifactId>
|
|
|
|
|
- <version>2.1.0</version>
|
|
|
|
|
- <packaging>pom</packaging>
|
|
|
|
|
-
|
|
|
|
|
- <parent>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
- <version>2.1.3.RELEASE</version>
|
|
|
|
|
- <relativePath/>
|
|
|
|
|
- </parent>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- <modules>
|
|
|
|
|
- <module>happy-boot-base-common</module>
|
|
|
|
|
- <module>happy-boot-module-system</module>
|
|
|
|
|
- <module>happy-boot-module-common</module>
|
|
|
|
|
- <module>happy-boot-module-powerjob</module>
|
|
|
|
|
- <module>happy-boot-module-payment</module>
|
|
|
|
|
- </modules>
|
|
|
|
|
-
|
|
|
|
|
- <distributionManagement>
|
|
|
|
|
- <repository>
|
|
|
|
|
- <id>jeecg</id>
|
|
|
|
|
- <name>jeecg Repository</name>
|
|
|
|
|
- <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
|
|
|
|
|
- </repository>
|
|
|
|
|
- <snapshotRepository>
|
|
|
|
|
- <id>jeecg-snapshots</id>
|
|
|
|
|
- <name>jeecg Snapshot Repository</name>
|
|
|
|
|
- <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
- </snapshotRepository>
|
|
|
|
|
- </distributionManagement>
|
|
|
|
|
-
|
|
|
|
|
- <repositories>
|
|
|
|
|
- <repository>
|
|
|
|
|
- <id>aliyun</id>
|
|
|
|
|
- <name>aliyun Repository</name>
|
|
|
|
|
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
|
|
|
|
- <snapshots>
|
|
|
|
|
- <enabled>false</enabled>
|
|
|
|
|
- </snapshots>
|
|
|
|
|
- </repository>
|
|
|
|
|
- <repository>
|
|
|
|
|
- <id>jeecg</id>
|
|
|
|
|
- <name>jeecg Repository</name>
|
|
|
|
|
- <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
|
|
|
|
|
- <snapshots>
|
|
|
|
|
- <enabled>false</enabled>
|
|
|
|
|
- </snapshots>
|
|
|
|
|
- </repository>
|
|
|
|
|
- </repositories>
|
|
|
|
|
-
|
|
|
|
|
- <properties>
|
|
|
|
|
- <happyboot.common.version>2.1.0</happyboot.common.version>
|
|
|
|
|
- <java.version>1.8</java.version>
|
|
|
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
- <mybatis-plus.version>3.1.2</mybatis-plus.version>
|
|
|
|
|
- <druid.version>1.1.17</druid.version>
|
|
|
|
|
- <jwt.version>0.9.1</jwt.version>
|
|
|
|
|
- <commons.version>2.6</commons.version>
|
|
|
|
|
- <aliyun-java-sdk-core.version>3.2.3</aliyun-java-sdk-core.version>
|
|
|
|
|
- <aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>
|
|
|
|
|
- <okhttp-version>3.11.0</okhttp-version>
|
|
|
|
|
- </properties>
|
|
|
|
|
-
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <!--集成springmvc框架并实现自动配置 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
|
- </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-aop</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
- <optional>true</optional>
|
|
|
|
|
- </dependency> -->
|
|
|
|
|
-
|
|
|
|
|
- <!-- commons -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-io</groupId>
|
|
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
|
|
- <version>${commons.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-lang</groupId>
|
|
|
|
|
- <artifactId>commons-lang</artifactId>
|
|
|
|
|
- <version>${commons.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>commons-fileupload</groupId>
|
|
|
|
|
- <artifactId>commons-fileupload</artifactId>
|
|
|
|
|
- <version>1.4</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- freemarker -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- Lombok -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- mybatis-plus -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
|
|
- <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
- <version>${mybatis-plus.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- druid -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
|
- <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
- <version>${druid.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- 动态数据源 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.baomidou</groupId>
|
|
|
|
|
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|
|
|
|
- <version>2.5.4</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- json -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.alibaba</groupId>
|
|
|
|
|
- <artifactId>fastjson</artifactId>
|
|
|
|
|
- <version>1.2.56</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!--mysql-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>mysql</groupId>
|
|
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
- <version>5.1.47</version>
|
|
|
|
|
- <scope>runtime</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- sqlserver-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
- <artifactId>sqljdbc4</artifactId>
|
|
|
|
|
- <version>4.0</version>
|
|
|
|
|
- <scope>runtime</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- oracle驱动 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.oracle</groupId>
|
|
|
|
|
- <artifactId>ojdbc6</artifactId>
|
|
|
|
|
- <version>11.2.0.3</version>
|
|
|
|
|
- <scope>runtime</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- Quartz定时任务 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!--JWT-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.auth0</groupId>
|
|
|
|
|
- <artifactId>java-jwt</artifactId>
|
|
|
|
|
- <version>3.7.0</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!--shiro-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.apache.shiro</groupId>
|
|
|
|
|
- <artifactId>shiro-spring-boot-starter</artifactId>
|
|
|
|
|
- <version>1.4.0</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- Swagger API文档 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
|
- <artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
- <version>2.9.2</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
|
- <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
- <version>2.9.2</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
- <artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
|
|
- <version>1.9.3</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
|
|
- <artifactId>springfox-bean-validators</artifactId>
|
|
|
|
|
- <version>2.9.2</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <!-- # 增加两个配置解决 NumberFormatException -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
|
|
- <artifactId>swagger-annotations</artifactId>
|
|
|
|
|
- <version>1.5.22</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
|
|
- <artifactId>swagger-models</artifactId>
|
|
|
|
|
- <version>1.5.22</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- <!-- Redis -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
|
- <artifactId>commons-pool2</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- 代码生成器 -->
|
|
|
|
|
- <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=345672 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
- <artifactId>codegenerate</artifactId>
|
|
|
|
|
- <version>1.0.5</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- AutoPoi Excel工具类-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.jeecgframework</groupId>
|
|
|
|
|
- <artifactId>autopoi-web</artifactId>
|
|
|
|
|
- <version>1.0.3</version>
|
|
|
|
|
- <exclusions>
|
|
|
|
|
- <exclusion>
|
|
|
|
|
- <groupId>commons-codec</groupId>
|
|
|
|
|
- <artifactId>commons-codec</artifactId>
|
|
|
|
|
- </exclusion>
|
|
|
|
|
- </exclusions>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>cn.hutool</groupId>
|
|
|
|
|
- <artifactId>hutool-all</artifactId>
|
|
|
|
|
- <version>4.5.11</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- 阿里云短信 -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.aliyun</groupId>
|
|
|
|
|
- <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
|
|
|
- <version>${aliyun-java-sdk-dysmsapi.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.aliyun</groupId>
|
|
|
|
|
- <artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
|
- <version>${aliyun-java-sdk-core.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!--HttpClient-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
- <artifactId>httpclient</artifactId>
|
|
|
|
|
- <version>4.5.3</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!-- websocket -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <!--阿里云图片服务-->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.aliyun.oss</groupId>
|
|
|
|
|
- <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
- <version>2.6.0</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
- <artifactId>okhttp</artifactId>
|
|
|
|
|
- <version>${okhttp-version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- </dependencies>
|
|
|
|
|
-
|
|
|
|
|
- <dependencyManagement>
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <!-- happy-boot-base-common -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
- <artifactId>happy-boot-base-common</artifactId>
|
|
|
|
|
- <version>${happyboot.common.version}</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- </dependencies>
|
|
|
|
|
- </dependencyManagement>
|
|
|
|
|
- <build>
|
|
|
|
|
- <plugins>
|
|
|
|
|
- <!--<plugin>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- 指定JDK编译版本 -->
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <source>1.8</source>
|
|
|
|
|
- <target>1.8</target>
|
|
|
|
|
- <encoding>UTF-8</encoding>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- <!-- 打包跳过测试 -->
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <skipTests>true</skipTests>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- <!-- 避免font文件的二进制文件格式压缩破坏 -->
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <nonFilteredFileExtensions>
|
|
|
|
|
- <nonFilteredFileExtension>woff</nonFilteredFileExtension>
|
|
|
|
|
- <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
|
|
|
|
|
- <nonFilteredFileExtension>eot</nonFilteredFileExtension>
|
|
|
|
|
- <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
|
|
|
|
|
- <nonFilteredFileExtension>svg</nonFilteredFileExtension>
|
|
|
|
|
- </nonFilteredFileExtensions>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- </plugins>
|
|
|
|
|
- <resources>
|
|
|
|
|
- <resource>
|
|
|
|
|
- <directory>src/main/resources</directory>
|
|
|
|
|
- <filtering>true</filtering>
|
|
|
|
|
- </resource>
|
|
|
|
|
- <resource>
|
|
|
|
|
- <directory>src/main/java</directory>
|
|
|
|
|
- <includes>
|
|
|
|
|
- <include>**/*.xml</include>
|
|
|
|
|
- <include>**/*.json</include>
|
|
|
|
|
- <include>**/*.ftl</include>
|
|
|
|
|
- </includes>
|
|
|
|
|
- </resource>
|
|
|
|
|
- </resources>
|
|
|
|
|
- </build>
|
|
|
|
|
|
|
+<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>org.jeecgframework.boot</groupId>
|
|
|
|
|
+ <artifactId>happy-boot-parent</artifactId>
|
|
|
|
|
+ <version>2.1.0</version>
|
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
|
+
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
+ <version>2.1.3.RELEASE</version>
|
|
|
|
|
+ <relativePath/>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <modules>
|
|
|
|
|
+ <module>happy-boot-base-common</module>
|
|
|
|
|
+ <module>happy-boot-module-system</module>
|
|
|
|
|
+ <module>happy-boot-module-common</module>
|
|
|
|
|
+ <module>happy-boot-module-powerjob</module>
|
|
|
|
|
+ <module>happy-boot-module-payment</module>
|
|
|
|
|
+ <module>happy-boot-module-settlement</module>
|
|
|
|
|
+ </modules>
|
|
|
|
|
+
|
|
|
|
|
+ <distributionManagement>
|
|
|
|
|
+ <repository>
|
|
|
|
|
+ <id>jeecg</id>
|
|
|
|
|
+ <name>jeecg Repository</name>
|
|
|
|
|
+ <url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
|
|
|
|
|
+ </repository>
|
|
|
|
|
+ <snapshotRepository>
|
|
|
|
|
+ <id>jeecg-snapshots</id>
|
|
|
|
|
+ <name>jeecg Snapshot Repository</name>
|
|
|
|
|
+ <url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
+ </snapshotRepository>
|
|
|
|
|
+ </distributionManagement>
|
|
|
|
|
+
|
|
|
|
|
+ <repositories>
|
|
|
|
|
+ <repository>
|
|
|
|
|
+ <id>aliyun</id>
|
|
|
|
|
+ <name>aliyun Repository</name>
|
|
|
|
|
+ <url>http://maven.aliyun.com/nexus/content/groups/public</url>
|
|
|
|
|
+ <snapshots>
|
|
|
|
|
+ <enabled>false</enabled>
|
|
|
|
|
+ </snapshots>
|
|
|
|
|
+ </repository>
|
|
|
|
|
+ <repository>
|
|
|
|
|
+ <id>jeecg</id>
|
|
|
|
|
+ <name>jeecg Repository</name>
|
|
|
|
|
+ <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
|
|
|
|
|
+ <snapshots>
|
|
|
|
|
+ <enabled>false</enabled>
|
|
|
|
|
+ </snapshots>
|
|
|
|
|
+ </repository>
|
|
|
|
|
+ </repositories>
|
|
|
|
|
+
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <happyboot.common.version>2.1.0</happyboot.common.version>
|
|
|
|
|
+ <java.version>1.8</java.version>
|
|
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
+ <mybatis-plus.version>3.1.2</mybatis-plus.version>
|
|
|
|
|
+ <druid.version>1.1.17</druid.version>
|
|
|
|
|
+ <jwt.version>0.9.1</jwt.version>
|
|
|
|
|
+ <commons.version>2.6</commons.version>
|
|
|
|
|
+ <aliyun-java-sdk-core.version>3.2.3</aliyun-java-sdk-core.version>
|
|
|
|
|
+ <aliyun-java-sdk-dysmsapi.version>1.0.0</aliyun-java-sdk-dysmsapi.version>
|
|
|
|
|
+ <okhttp-version>3.11.0</okhttp-version>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!--集成springmvc框架并实现自动配置 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
|
+ </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-aop</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
+ <optional>true</optional>
|
|
|
|
|
+ </dependency> -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- commons -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
|
|
+ <version>${commons.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-lang</groupId>
|
|
|
|
|
+ <artifactId>commons-lang</artifactId>
|
|
|
|
|
+ <version>${commons.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
|
|
+ <version>1.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- freemarker -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Lombok -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- mybatis-plus -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- druid -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
+ <version>${druid.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 动态数据源 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
|
+ <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|
|
|
|
+ <version>2.5.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- json -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
|
+ <version>1.2.56</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--mysql-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
+ <version>5.1.47</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- sqlserver-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
+ <artifactId>sqljdbc4</artifactId>
|
|
|
|
|
+ <version>4.0</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- oracle驱动 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.oracle</groupId>
|
|
|
|
|
+ <artifactId>ojdbc6</artifactId>
|
|
|
|
|
+ <version>11.2.0.3</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Quartz定时任务 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--JWT-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.auth0</groupId>
|
|
|
|
|
+ <artifactId>java-jwt</artifactId>
|
|
|
|
|
+ <version>3.7.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--shiro-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-spring-boot-starter</artifactId>
|
|
|
|
|
+ <version>1.4.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Swagger API文档 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
+ <version>2.9.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
+ <version>2.9.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
+ <artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
|
|
+ <version>1.9.3</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-bean-validators</artifactId>
|
|
|
|
|
+ <version>2.9.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- # 增加两个配置解决 NumberFormatException -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
|
|
+ <version>1.5.22</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
|
|
+ <version>1.5.22</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Redis -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 代码生成器 -->
|
|
|
|
|
+ <!-- 如果下载失败,看这个链接http://jeecg-boot.mydoc.io/?t=345672 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
+ <artifactId>codegenerate</artifactId>
|
|
|
|
|
+ <version>1.0.5</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- AutoPoi Excel工具类-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jeecgframework</groupId>
|
|
|
|
|
+ <artifactId>autopoi-web</artifactId>
|
|
|
|
|
+ <version>1.0.3</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
|
|
+ <version>4.5.11</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 阿里云短信 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
|
|
+ <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
|
|
|
+ <version>${aliyun-java-sdk-dysmsapi.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
|
|
+ <artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
|
+ <version>${aliyun-java-sdk-core.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--HttpClient-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
|
|
+ <version>4.5.3</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- websocket -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--阿里云图片服务-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
+ <version>2.6.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
|
|
+ <version>${okhttp-version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!-- happy-boot-base-common -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
+ <artifactId>happy-boot-base-common</artifactId>
|
|
|
|
|
+ <version>${happyboot.common.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </dependencyManagement>
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <!--<plugin>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ 指定JDK编译版本 -->
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <source>1.8</source>
|
|
|
|
|
+ <target>1.8</target>
|
|
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <!-- 打包跳过测试 -->
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <skipTests>true</skipTests>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <!-- 避免font文件的二进制文件格式压缩破坏 -->
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <nonFilteredFileExtensions>
|
|
|
|
|
+ <nonFilteredFileExtension>woff</nonFilteredFileExtension>
|
|
|
|
|
+ <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
|
|
|
|
|
+ <nonFilteredFileExtension>eot</nonFilteredFileExtension>
|
|
|
|
|
+ <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
|
|
|
|
|
+ <nonFilteredFileExtension>svg</nonFilteredFileExtension>
|
|
|
|
|
+ </nonFilteredFileExtensions>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ <resources>
|
|
|
|
|
+ <resource>
|
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
|
+ <filtering>true</filtering>
|
|
|
|
|
+ </resource>
|
|
|
|
|
+ <resource>
|
|
|
|
|
+ <directory>src/main/java</directory>
|
|
|
|
|
+ <includes>
|
|
|
|
|
+ <include>**/*.xml</include>
|
|
|
|
|
+ <include>**/*.json</include>
|
|
|
|
|
+ <include>**/*.ftl</include>
|
|
|
|
|
+ </includes>
|
|
|
|
|
+ </resource>
|
|
|
|
|
+ </resources>
|
|
|
|
|
+ </build>
|
|
|
</project>
|
|
</project>
|