141 lines
4.8 KiB
XML
141 lines
4.8 KiB
XML
<?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>sonic-pigeon</artifactId>
|
||
<groupId>com.sonic.pigeon</groupId>
|
||
<version>1.0</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>sonic-pigeon-server</artifactId>
|
||
<packaging>jar</packaging>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.sonic.pigeon</groupId>
|
||
<artifactId>sonic-pigeon-common</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.sonic.sdk</groupId>
|
||
<artifactId>sonic-common-api</artifactId>
|
||
<version>1.0.1-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.sonic</groupId>
|
||
<artifactId>dao-support-lib</artifactId>
|
||
<version>1.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.sonic.pigeon</groupId>
|
||
<artifactId>sonic-pigeon-lib</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.sonic.lion</groupId>
|
||
<artifactId>sonic-lion-lib</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.sonic.frog</groupId>
|
||
<artifactId>sonic-frog-lib</artifactId>
|
||
<version>1.1-SNAPSHOT</version>
|
||
</dependency>
|
||
|
||
<!-- Redis相关的包 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>it.ozimov</groupId>
|
||
<artifactId>embedded-redis</artifactId>
|
||
</dependency>
|
||
<!-- Redis相关的包 -->
|
||
|
||
<dependency>
|
||
<groupId>org.redisson</groupId>
|
||
<artifactId>redisson-spring-boot-starter</artifactId>
|
||
<version>3.13.1</version>
|
||
</dependency>
|
||
|
||
<!-- rabbitmq -->
|
||
<dependency>
|
||
<groupId>org.springframework.amqp</groupId>
|
||
<artifactId>spring-amqp</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.amqp</groupId>
|
||
<artifactId>spring-rabbit</artifactId>
|
||
</dependency>
|
||
|
||
<!--test-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter-engine</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter-api</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.h2database</groupId>
|
||
<artifactId>h2</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.ben-manes.caffeine</groupId>
|
||
<artifactId>caffeine</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.sonic.pigeon</groupId>
|
||
<artifactId>sonic-pigeon-lib</artifactId>
|
||
<version>1.1-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.netease.nim</groupId>
|
||
<artifactId>yunxin-server-sdk</artifactId>
|
||
<version>1.1.1</version> <!-- 请在查看仓库版本后替换为您实际引入的版本号 -->
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.sonic.pigeon</groupId>
|
||
<artifactId>sonic-pigeon-lib</artifactId>
|
||
<version>1.1-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>pl.project13.maven</groupId>
|
||
<artifactId>git-commit-id-plugin</artifactId>
|
||
<!-- 创建新项目后,在还没有和git绑定的情况下,编译会报错,需要将以下两个参数设为false -->
|
||
<configuration>
|
||
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
||
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|