82 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.8 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>admin</artifactId>
 | |
|         <groupId>cn.iocoder.mall</groupId>
 | |
|         <version>1.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <artifactId>admin-service-impl</artifactId>
 | |
| 
 | |
|     <properties>
 | |
|         <org.mapstruct.version>1.3.0.Final</org.mapstruct.version>
 | |
|     </properties>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba</groupId>
 | |
|             <artifactId>dubbo</artifactId>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>cn.iocoder.mall</groupId>
 | |
|             <artifactId>admin-service-api</artifactId>
 | |
|             <version>1.0-SNAPSHOT</version>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>mysql</groupId>
 | |
|             <artifactId>mysql-connector-java</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-jdbc</artifactId>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.mybatis.spring.boot</groupId>
 | |
|             <artifactId>mybatis-spring-boot-starter</artifactId>
 | |
|             <version>2.0.0</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.mapstruct</groupId>
 | |
|             <artifactId>mapstruct</artifactId>
 | |
|             <version>${org.mapstruct.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.google.guava</groupId>
 | |
|             <artifactId>guava</artifactId>
 | |
|             <version>27.0.1-jre</version>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <!-- 提供给 mapstruct 使用 -->
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>3.5.1</version>
 | |
|                 <configuration>
 | |
|                     <source>1.8</source> <!-- or higher, depending on your project -->
 | |
|                     <target>1.8</target> <!-- or higher, depending on your project -->
 | |
|                     <annotationProcessorPaths>
 | |
|                         <path>
 | |
|                             <groupId>org.mapstruct</groupId>
 | |
|                             <artifactId>mapstruct-processor</artifactId>
 | |
|                             <version>${org.mapstruct.version}</version>
 | |
|                         </path>
 | |
|                     </annotationProcessorPaths>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| 
 | |
| </project> |