119 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			119 lines
		
	
	
		
			3.7 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> | ||
|  |         <groupId>org.dromara</groupId> | ||
|  |         <artifactId>ruoyi-modules</artifactId> | ||
|  |         <version>${revision}</version> | ||
|  |     </parent> | ||
|  |     <modelVersion>4.0.0</modelVersion> | ||
|  | 
 | ||
|  |     <artifactId>ruoyi-gen</artifactId> | ||
|  | 
 | ||
|  |     <description> | ||
|  |         ruoyi-gen代码生成 | ||
|  |     </description> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-nacos</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <!-- Apache Velocity --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.velocity</groupId> | ||
|  |             <artifactId>velocity-engine-core</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <!-- RuoYi Common Log --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-log</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-doc</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-web</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-mybatis</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-dubbo</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-tenant</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.dromara</groupId> | ||
|  |             <artifactId>ruoyi-common-security</artifactId> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.anyline</groupId> | ||
|  |             <artifactId>anyline-environment-spring-data-jdbc</artifactId> | ||
|  |             <version>${anyline.version}</version> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <dependency> | ||
|  |             <groupId>org.anyline</groupId> | ||
|  |             <artifactId>anyline-data-jdbc-mysql</artifactId> | ||
|  |             <version>${anyline.version}</version> | ||
|  |         </dependency> | ||
|  | 
 | ||
|  |         <!-- anyline支持100+种类型数据库 添加对应的jdbc依赖与anyline对应数据库依赖包即可 --> | ||
|  | <!--        <dependency>--> | ||
|  | <!--            <groupId>org.anyline</groupId>--> | ||
|  | <!--            <artifactId>anyline-data-jdbc-oracle</artifactId>--> | ||
|  | <!--            <version>${anyline.version}</version>--> | ||
|  | <!--        </dependency>--> | ||
|  | 
 | ||
|  | <!--        <dependency>--> | ||
|  | <!--            <groupId>org.anyline</groupId>--> | ||
|  | <!--            <artifactId>anyline-data-jdbc-postgresql</artifactId>--> | ||
|  | <!--            <version>${anyline.version}</version>--> | ||
|  | <!--        </dependency>--> | ||
|  | 
 | ||
|  | <!--        <dependency>--> | ||
|  | <!--            <groupId>org.anyline</groupId>--> | ||
|  | <!--            <artifactId>anyline-data-jdbc-mssql</artifactId>--> | ||
|  | <!--            <version>${anyline.version}</version>--> | ||
|  | <!--        </dependency>--> | ||
|  | 
 | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <finalName>${project.artifactId}</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> | ||
|  |                         </goals> | ||
|  |                     </execution> | ||
|  |                 </executions> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | 
 | ||
|  | </project> |