RuoYi-Cloud/ruoyi-auth/pom.xml

75 lines
2.4 KiB
XML
Raw Normal View History

2020-05-24 20:40:55 +08:00
<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>com.ruoyi</groupId>
<artifactId>ruoyi</artifactId>
2023-01-16 11:42:23 +08:00
<version>3.6.2</version>
2020-05-24 20:40:55 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ruoyi-auth</artifactId>
<description>
ruoyi-auth认证授权中心
</description>
<dependencies>
2021-04-21 16:31:21 +08:00
<!-- SpringCloud Alibaba Nacos -->
2020-05-24 20:40:55 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
2021-04-21 16:31:21 +08:00
<!-- SpringCloud Alibaba Nacos Config -->
2020-05-24 20:40:55 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
2021-04-21 16:31:21 +08:00
<!-- SpringCloud Alibaba Sentinel -->
2020-05-24 20:40:55 +08:00
<dependency>
2020-09-01 13:31:00 +08:00
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
2020-05-24 20:40:55 +08:00
</dependency>
<!-- SpringBoot Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2020-09-01 13:31:00 +08:00
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2020-05-24 20:40:55 +08:00
<!-- RuoYi Common Security-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-common-security</artifactId>
</dependency>
</dependencies>
<build>
2021-01-17 12:06:33 +08:00
<finalName>${project.artifactId}</finalName>
2020-05-24 20:40:55 +08:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>