152 lines
5.9 KiB
XML
152 lines
5.9 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>ruoyi</artifactId>
|
|||
|
|
<groupId>com.ruoyi</groupId>
|
|||
|
|
<version>3.6.6</version>
|
|||
|
|
</parent>
|
|||
|
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|
|||
|
|
<artifactId>ruoyi-rocketmq</artifactId>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
<!--rocketmq消息队列-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.apache.rocketmq</groupId>
|
|||
|
|
<artifactId>rocketmq-client</artifactId>
|
|||
|
|
<version> 4.9.0</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.alibaba.cloud</groupId>
|
|||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.alibaba.cloud</groupId>
|
|||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.alibaba.nacos</groupId>
|
|||
|
|
<artifactId>nacos-client</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.alibaba.cloud</groupId>
|
|||
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- SpringBoot Actuator -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- Mysql驱动包 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.mysql</groupId>
|
|||
|
|
<artifactId>mysql-connector-j</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- RuoYi Common Log -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ruoyi</groupId>
|
|||
|
|
<artifactId>ruoyi-common-log</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- RuoYi Common Swagger-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ruoyi</groupId>
|
|||
|
|
<artifactId>ruoyi-common-swagger</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.ruoyi</groupId>
|
|||
|
|
<artifactId>ruoyi-common-security</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.projectlombok</groupId>
|
|||
|
|
<artifactId>lombok</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- yml调用pom变量 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.yaml</groupId>
|
|||
|
|
<artifactId>snakeyaml</artifactId>
|
|||
|
|
<version>1.28</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- SpringBoot Web -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
</dependencies>
|
|||
|
|
|
|||
|
|
<build>
|
|||
|
|
<finalName>${project.artifactId}</finalName>
|
|||
|
|
<plugins>
|
|||
|
|
<plugin>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
|
<executions>
|
|||
|
|
<execution>
|
|||
|
|
<goals>
|
|||
|
|
<goal>repackage</goal>
|
|||
|
|
</goals>
|
|||
|
|
</execution>
|
|||
|
|
</executions>
|
|||
|
|
</plugin>
|
|||
|
|
<!-- docker-maven-plugin插件(不带Dockerfile文件) -->
|
|||
|
|
<!-- <plugin>-->
|
|||
|
|
<!-- <groupId>com.spotify</groupId>-->
|
|||
|
|
<!-- <artifactId>docker-maven-plugin</artifactId>-->
|
|||
|
|
<!-- <version>1.2.0</version>-->
|
|||
|
|
<!-- <configuration>-->
|
|||
|
|
<!-- <!–用于指定镜像名称–>-->
|
|||
|
|
<!-- <imageName>${project.build.finalName}</imageName>-->
|
|||
|
|
<!-- <imageTags>latest</imageTags>-->
|
|||
|
|
<!-- <!–用于指定基础镜像,相当于Dockerfile中的FROM指令–>-->
|
|||
|
|
<!-- <baseImage>openjdk:latest</baseImage>-->
|
|||
|
|
<!-- <!–相当于Dockerfile的ENTRYPOINT指令–>-->
|
|||
|
|
<!-- <entryPoint>["java", "-jar", "/${project.build.finalName}.jar"]</entryPoint>-->
|
|||
|
|
<!-- <!–是否跳过docker build–>-->
|
|||
|
|
<!-- <!–<skipDockerBuild>true</skipDockerBuild>–>-->
|
|||
|
|
<!-- <dockerHost>${configuration.docker-one-Host}</dockerHost>-->
|
|||
|
|
<!-- <resources>-->
|
|||
|
|
<!-- <resource>-->
|
|||
|
|
<!-- <targetPath>/</targetPath>-->
|
|||
|
|
<!-- <!–用于指定需要复制的根目录,${project.build.directory}表示target目录–>-->
|
|||
|
|
<!-- <directory>${project.build.directory}</directory>-->
|
|||
|
|
<!-- <!–用于指定需要复制的文件。${project.build.finalName}.jar指的是打包后的jar包文件。–>-->
|
|||
|
|
<!-- <include>${project.build.finalName}.jar</include>-->
|
|||
|
|
<!-- </resource>-->
|
|||
|
|
<!-- </resources>-->
|
|||
|
|
<!-- </configuration>-->
|
|||
|
|
<!-- <executions>-->
|
|||
|
|
<!-- <execution>-->
|
|||
|
|
<!-- <id>build-image</id>-->
|
|||
|
|
<!-- <phase>package</phase>-->
|
|||
|
|
<!-- <goals>-->
|
|||
|
|
<!-- <goal>build</goal>-->
|
|||
|
|
<!-- </goals>-->
|
|||
|
|
<!-- </execution>-->
|
|||
|
|
<!-- </executions>-->
|
|||
|
|
<!-- </plugin>-->
|
|||
|
|
</plugins>
|
|||
|
|
<!--如果不设置resource 会导致application.yml中的@@找不到pom文件中的配置-->
|
|||
|
|
<resources>
|
|||
|
|
<resource>
|
|||
|
|
<directory>src/main/resources</directory>
|
|||
|
|
<filtering>true</filtering>
|
|||
|
|
</resource>
|
|||
|
|
</resources>
|
|||
|
|
</build>
|
|||
|
|
|
|||
|
|
</project>
|