<?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">
|
<parent>
|
<artifactId>iplatform</artifactId>
|
<groupId>com.iplatform</groupId>
|
<version>2.7.18</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>iplatform-core</artifactId>
|
<name>iplatform-core</name>
|
<packaging>jar</packaging>
|
|
<properties>
|
</properties>
|
|
<dependencies>
|
|
<!-- 基础库依赖: web, 用户核心定义在这里,
|
离开walker-web-security模块也能运行, 2022/10/29 -->
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-web</artifactId>
|
</dependency>
|
|
<!-- 基础依赖: 缓存模块, 2022/09/20 -->
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-cache</artifactId>
|
</dependency>
|
|
<!-- 依赖文件模块基础库,2023-02-14 -->
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-file</artifactId>
|
</dependency>
|
|
<!-- 注解支持创建Bean -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-core</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-beans</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<!-- 解析 yml 配置文件,不配置报错找不到文件。2022-08-25 -->
|
<dependency>
|
<groupId>org.yaml</groupId>
|
<artifactId>snakeyaml</artifactId>
|
</dependency>
|
|
<!-- AESUtils 加解密工具使用,目前仅微信使用了。2023-09-15 -->
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|