You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							102 lines
						
					
					
						
							3.8 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							102 lines
						
					
					
						
							3.8 KiB
						
					
					
				| <?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> | |
|         <groupId>cn.iocoder.boot</groupId> | |
|         <artifactId>cc-admin-master</artifactId> | |
|         <version>${revision}</version> | |
|     </parent> | |
|     <modelVersion>4.0.0</modelVersion> | |
| 
 | |
|     <artifactId>yudao-server</artifactId> | |
|     <packaging>jar</packaging> | |
| 
 | |
|     <name>${project.artifactId}</name> | |
|     <description> | |
|         该包是 Server 主项目,包含了所有的业务模块。 | |
|         业务模块包括:系统、基础设施、工作流、数据报表、物联网等。 | |
|         每个业务模块,都是一个 Maven 子模块。 | |
|         该包的 pom.xml 文件,主要是引入各个业务模块的依赖。 | |
|     </description> | |
|     <url>https://github.com/YunaiV/ruoyi-vue-pro</url> | |
| 
 | |
|     <dependencies> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-hand</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-system</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-infra</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency> | |
| 
 | |
|         <!-- 数据报表。默认注释,保证编译速度 --> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-report</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency> | |
|         <!-- 工作流。默认注释,保证编译速度 --> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-bpm</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency> | |
| 
 | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-hand-mqtt</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency> | |
| <!--        <!– IoT 物联网相关模块。默认注释,保证编译速度 –> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-module-iot-biz</artifactId> | |
|             <version>${revision}</version> | |
|         </dependency>--> | |
|         <!-- spring boot 配置所需依赖 --> | |
|         <dependency> | |
|             <groupId>org.springframework.boot</groupId> | |
|             <artifactId>spring-boot-configuration-processor</artifactId> | |
|             <optional>true</optional> | |
|         </dependency> | |
|         <!-- 服务保障相关 --> | |
|         <dependency> | |
|             <groupId>cn.iocoder.boot</groupId> | |
|             <artifactId>yudao-spring-boot-starter-protection</artifactId> | |
|         </dependency> | |
|         <dependency> | |
|             <groupId>com.taosdata.jdbc</groupId> | |
|             <artifactId>taos-jdbcdriver</artifactId> | |
|         </dependency> | |
|     </dependencies> | |
| 
 | |
|     <build> | |
|         <!-- 设置构建的 jar 包名 --> | |
|         <finalName>cc-admin-mobile</finalName> | |
|         <plugins> | |
|             <!-- 打包 --> | |
|             <plugin> | |
|                 <groupId>org.springframework.boot</groupId> | |
|                 <artifactId>spring-boot-maven-plugin</artifactId> | |
|                 <version>${spring.boot.version}</version> | |
|                 <executions> | |
|                     <execution> | |
|                         <goals> | |
|                             <goal>repackage</goal> <!-- 将引入的 jar 打入其中 --> | |
|                         </goals> | |
|                     </execution> | |
|                 </executions> | |
|             </plugin> | |
|         </plugins> | |
|     </build> | |
| 
 | |
| </project>
 | |
| 
 |