| | |
| | | <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
| | | <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version> |
| | | <!-- 统一依赖管理 --> |
| | | <spring.framework.version>5.3.39</spring.framework.version> |
| | | <spring.security.version>5.8.14</spring.security.version> |
| | | <spring.boot.version>2.7.18</spring.boot.version> |
| | | <spring.cloud.version>2021.0.9</spring.cloud.version> |
| | | <spring.cloud.alibaba.version>2021.0.6.1</spring.cloud.alibaba.version> |
| | |
| | | <ip2region.version>2.7.0</ip2region.version> |
| | | <bizlog-sdk.version>3.0.6</bizlog-sdk.version> |
| | | <reflections.version>0.10.2</reflections.version> |
| | | <!-- 三方云服务相关 --> |
| | | <okio.version>3.5.0</okio.version> |
| | | <okhttp3.version>4.11.0</okhttp3.version> |
| | | <commons-io.version>2.15.1</commons-io.version> |
| | | <minio.version>8.5.7</minio.version> |
| | | <aliyun-java-sdk-core.version>4.6.4</aliyun-java-sdk-core.version> |
| | | <aliyun-java-sdk-dysmsapi.version>2.2.1</aliyun-java-sdk-dysmsapi.version> |
| | | <tencentcloud-sdk-java.version>3.1.880</tencentcloud-sdk-java.version> |
| | | <justauth.version>1.0.8</justauth.version> |
| | | <jimureport.version>1.6.6</jimureport.version> |
| | | <xercesImpl.version>2.12.2</xercesImpl.version> |
| | | <weixin-java.version>4.6.0</weixin-java.version> |
| | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| | | </properties> |
| | | |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | <!-- 统一依赖管理 --> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-framework-bom</artifactId> <!-- JDK8 版本独有:保证 Spring Framework 尽量高 --> |
| | | <version>${spring.framework.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.security</groupId> |
| | | <artifactId>spring-security-bom</artifactId> <!-- JDK8 版本独有:保证 Spring Security 尽量高 --> |
| | | <version>${spring.security.version}</version> |
| | | <type>pom</type> |
| | | <scope>import</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-dependencies</artifactId> |
| | |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>commons-io</groupId> |
| | | <artifactId>commons-io</artifactId> |
| | | <version>${commons-io.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.apache.tika</groupId> |
| | | <artifactId>tika-core</artifactId> <!-- 文件类型的识别 --> |
| | | <version>${tika-core.version}</version> |
| | |
| | | <groupId>org.jsoup</groupId> |
| | | <artifactId>jsoup</artifactId> |
| | | <version>${jsoup.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.reflections</groupId> |
| | | <artifactId>reflections</artifactId> |
| | | <version>${reflections.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- 三方云服务相关 --> |
| | | <dependency> |
| | | <groupId>com.squareup.okio</groupId> |
| | | <artifactId>okio</artifactId> |
| | | <version>${okio.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.squareup.okhttp3</groupId> |
| | | <artifactId>okhttp</artifactId> |
| | | <version>${okhttp3.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.minio</groupId> |
| | | <artifactId>minio</artifactId> |
| | | <version>${minio.version}</version> |
| | | </dependency> |
| | | |
| | | </dependencies> |