forked from luyan/epmet-cloud-lingshan
				
			
			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.
		
		
		
		
			
				
					73 lines
				
				2.4 KiB
			
		
		
			
		
	
	
					73 lines
				
				2.4 KiB
			| 
											6 years ago
										 | <?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>com.epmet</groupId> | ||
|  |         <artifactId>epmet-commons</artifactId> | ||
|  |         <version>2.0.0</version> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <artifactId>epmet-commons-mybatis</artifactId> | ||
|  |     <packaging>jar</packaging> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <mybatisplus.version>3.2.0</mybatisplus.version> | ||
|  |         <druid.version>1.1.14</druid.version> | ||
|  |         <sqlserver.version>4.0</sqlserver.version> | ||
|  |         <oracle.version>11.2.0.3</oracle.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>com.epmet</groupId> | ||
|  |             <artifactId>epmet-commons-tools</artifactId> | ||
|  |             <version>2.0.0</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.baomidou</groupId> | ||
|  |             <artifactId>mybatis-plus-boot-starter</artifactId> | ||
|  |             <version>${mybatisplus.version}</version> | ||
|  |             <exclusions> | ||
|  |                 <exclusion> | ||
|  |                     <groupId>com.baomidou</groupId> | ||
|  |                     <artifactId>mybatis-plus-generator</artifactId> | ||
|  |                 </exclusion> | ||
|  |             </exclusions> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.alibaba</groupId> | ||
|  |             <artifactId>druid-spring-boot-starter</artifactId> | ||
|  |             <version>${druid.version}</version> | ||
|  |         </dependency> | ||
|  |         <!--mysql驱动--> | ||
|  |         <dependency> | ||
|  |             <groupId>mysql</groupId> | ||
|  |             <artifactId>mysql-connector-java</artifactId> | ||
|  |         </dependency> | ||
|  |         <!--oracle驱动--> | ||
|  |         <dependency> | ||
|  |             <groupId>com.oracle</groupId> | ||
|  |             <artifactId>ojdbc6</artifactId> | ||
|  |             <version>${oracle.version}</version> | ||
|  |         </dependency> | ||
|  |         <!--sqlserver驱动--> | ||
|  |         <dependency> | ||
|  |             <groupId>com.microsoft.sqlserver</groupId> | ||
|  |             <artifactId>sqljdbc4</artifactId> | ||
|  |             <version>${sqlserver.version}</version> | ||
|  |         </dependency> | ||
|  |         <!--postgresql驱动--> | ||
|  |         <dependency> | ||
|  |             <groupId>org.postgresql</groupId> | ||
|  |             <artifactId>postgresql</artifactId> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <finalName>${project.artifactId}</finalName> | ||
|  |     </build> | ||
|  | 
 | ||
|  | </project> |