47 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.5 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">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <parent>
 | |
|         <groupId>cn.iocoder.cloud</groupId>
 | |
|         <artifactId>yudao-framework</artifactId>
 | |
|         <version>${revision}</version>
 | |
|     </parent>
 | |
| 
 | |
|     <artifactId>yudao-spring-boot-starter-sentinel</artifactId>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <name>${project.artifactId}</name>
 | |
|     <description>
 | |
|     </description>
 | |
|     <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
 | |
| 
 | |
|     <dependencies>
 | |
|         <!-- SpringCloud Alibaba Sentinel -->
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba.cloud</groupId>
 | |
|             <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- Sentinel Datasource Nacos -->
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba.csp</groupId>
 | |
|             <artifactId>sentinel-datasource-nacos</artifactId>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>cn.iocoder.cloud</groupId>
 | |
|             <artifactId>yudao-common</artifactId>
 | |
|             <scope>provided</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>cn.iocoder.cloud</groupId>
 | |
|             <artifactId>yudao-spring-boot-starter-web</artifactId>
 | |
|             <scope>provided</scope>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
| </project> |