You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.0 KiB
XML
56 lines
2.0 KiB
XML
1 year ago
|
<?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>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-framework</artifactId>
|
||
|
<version>${revision}</version>
|
||
|
</parent>
|
||
|
<packaging>jar</packaging>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>yudao-spring-boot-starter-biz-social</artifactId>
|
||
|
<name>${project.artifactId}</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-common</artifactId>
|
||
|
</dependency>
|
||
|
<!-- Spring 核心 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
</dependency>
|
||
|
<!-- Web 相关 -->
|
||
|
<dependency>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
<!-- spring boot 配置所需依赖 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<!-- 三方云服务相关 -->
|
||
|
<dependency>
|
||
|
<groupId>com.xkcoding.justauth</groupId>
|
||
|
<artifactId>justauth-spring-boot-starter</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-core</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.iocoder.boot</groupId>
|
||
|
<artifactId>yudao-spring-boot-starter-redis</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
</project>
|