Crushlevel-server/sonic-cow/server/pom.xml

180 lines
6.2 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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-cow</artifactId>
<groupId>com.sonic.bs</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sonic-cow-server</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.sonic.bs</groupId>
<artifactId>sonic-cow-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.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sonic.frog</groupId>
<artifactId>sonic-frog-lib</artifactId>
<version>1.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sonic.bear</groupId>
<artifactId>sonic-bear-lib</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sonic.lion</groupId>
<artifactId>sonic-lion-lib</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- TODO: 如果不需要Redis请移除以下Redis相关的包引用 -->
<!-- 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>
<!--国内 https://mvnrepository.com/artifact/com.volcengine/volcengine-java-sdk-ark-runtime -->
<!-- <dependency>-->
<!-- <groupId>com.volcengine</groupId>-->
<!-- <artifactId>volcengine-java-sdk-ark-runtime</artifactId>-->
<!-- <version>0.2.21</version>-->
<!-- </dependency>-->
<!--国外 https://mvnrepository.com/artifact/com.byteplus/byteplus-java-sdk-v2-ark-runtime -->
<dependency>
<groupId>com.byteplus</groupId>
<artifactId>byteplus-java-sdk-v2-ark-runtime</artifactId>
<version>0.1.21</version>
</dependency>
<!--oss-->
<dependency>
<groupId>com.sonic.shark</groupId>
<artifactId>sonic-shark-lib</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!--图生图-->
<dependency>
<groupId>com.volcengine</groupId>
<artifactId>volc-sdk-java</artifactId>
<!-- <version>1.0.232-SNAPSHOT</version>-->
<version>1.0.232</version>
<exclusions>
<exclusion>
<artifactId>jsr305</artifactId>
<groupId>com.google.code.findbugs</groupId>
</exclusion>
<exclusion>
<artifactId>j2objc-annotations</artifactId>
<groupId>com.google.j2objc</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.29</version>
</dependency>
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>1.4.9</version>
</dependency>
<dependency>
<groupId>com.sonic.cow</groupId>
<artifactId>sonic-cow-lib</artifactId>
<version>1.0-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>