| | |
| | | <easyexcel.version>2.2.11</easyexcel.version> |
| | | <cglib.version>3.3.0</cglib.version> |
| | | <velocity.version>2.3</velocity.version> |
| | | <mybatis-plus.version>3.4.3.4</mybatis-plus.version> |
| | | <mybatis-plus.version>3.5.0</mybatis-plus.version> |
| | | <p6spy.version>3.9.1</p6spy.version> |
| | | <hutool.version>5.7.18</hutool.version> |
| | | <okhttp.version>4.9.2</okhttp.version> |
| | |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-dependencies</artifactId> |
| | | <version>${spring-boot.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | |
| | | <!-- hutool 的依赖配置--> |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-bom</artifactId> |
| | | <version>${hutool.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | |
| | | <groupId>p6spy</groupId> |
| | | <artifactId>p6spy</artifactId> |
| | | <version>${p6spy.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-core</artifactId> |
| | | <version>${hutool.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-http</artifactId> |
| | | <version>${hutool.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-captcha</artifactId> |
| | | <version>${hutool.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-extra</artifactId> |
| | | <version>${hutool.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>cn.hutool</groupId> |
| | | <artifactId>hutool-jwt</artifactId> |
| | | <version>${hutool.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | |
| | | </plugins> |
| | | <resources> |
| | | <resource> |
| | | <!--打包该目录下的 application.yml --> |
| | | <directory>src/main/resources</directory> |
| | | <!-- 关闭过滤 --> |
| | | <filtering>false</filtering> |
| | | </resource> |
| | | <resource> |
| | | <directory>src/main/resources</directory> |
| | | <!-- 引入所有 匹配文件进行过滤 --> |
| | | <includes> |
| | | <include>application*</include> |
| | | <include>bootstrap*</include> |
| | | </includes> |
| | | <!-- 启用过滤 即该资源中的变量将会被过滤器中的值替换 --> |
| | | <filtering>true</filtering> |
| | | </resource> |