mirror of
https://github.com/HuLaSpark/HuLa-Server.git
synced 2026-09-21 05:59:34 +08:00
176 lines
6.5 KiB
XML
176 lines
6.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>luohuo-support</artifactId>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<version>3.0.6</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>luohuo-boot-server</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
<description>luohuo-boot-启动模块</description>
|
|
|
|
<dependencies>
|
|
<!-- @luohuo.generator auto insert server.pom.xml -->
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-database-mode</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-alibaba-commons</artifactId>
|
|
<version>${spring-cloud-alibaba-dependencies.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-generator-controller</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-base-controller</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-oauth-controller</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-im-controller</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-login-user-resolver</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-data-scope-sdk</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 基础服务相关接口 - 单体版实现类 -->
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-base-boot-impl</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-oauth-boot-impl</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
<!-- 用户信息注入 - 单体版实现类 -->
|
|
<dependency>
|
|
<groupId>com.luohuo.flex</groupId>
|
|
<artifactId>luohuo-login-user-boot-impl</artifactId>
|
|
<version>${luohuo-project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.luohuo.basic</groupId>
|
|
<artifactId>luohuo-all</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-redis-jackson</artifactId>
|
|
</dependency>
|
|
<!-- websocket -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <artifactId>HikariCP</artifactId>-->
|
|
<!-- <groupId>com.zaxxer</groupId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-freemarker</artifactId>-->
|
|
<!-- </dependency>-->
|
|
</dependencies>
|
|
|
|
<build>
|
|
<filters>
|
|
<filter>../../src/main/filters/config-${profile.active}.properties</filter>
|
|
</filters>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<!-- docker打包插件 -->
|
|
<plugin>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
<version>${dockerfile-maven-plugin.version}</version>
|
|
<configuration>
|
|
<repository>${docker.image.prefix}/${project.artifactId}</repository>
|
|
<tag>${luohuo-project.version}</tag>
|
|
<buildArgs>
|
|
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
|
</buildArgs>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
</project>
|