177 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			6.2 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>crmpoject</artifactId>
 | |
|         <groupId>com.yb.lb</groupId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|     </parent>
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <artifactId>crm-common</artifactId>
 | |
| 
 | |
|     <dependencies>
 | |
|         <!-- mybatis -->
 | |
|         <dependency>
 | |
|             <groupId>org.mybatis</groupId>
 | |
|             <artifactId>mybatis</artifactId>
 | |
|             <version>3.4.5</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.mybatis</groupId>
 | |
|             <artifactId>mybatis-spring</artifactId>
 | |
|             <version>1.3.0</version>
 | |
|         </dependency>
 | |
|         <!--mysql-->
 | |
|         <dependency>
 | |
|             <groupId>mysql</groupId>
 | |
|             <artifactId>mysql-connector-java</artifactId>
 | |
|             <version>5.1.34</version>
 | |
|         </dependency>
 | |
|         <!--mybatis通用mapper依赖-->
 | |
|         <dependency>
 | |
|             <groupId>tk.mybatis</groupId>
 | |
|             <artifactId>mapper-spring-boot-starter</artifactId>
 | |
|             <version>2.0.2</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>persistence-api</artifactId>
 | |
|                     <groupId>javax.persistence</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
|         <!--阿里数据库连接池 -->
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba</groupId>
 | |
|             <artifactId>druid-spring-boot-starter</artifactId>
 | |
|             <version>1.1.24</version>
 | |
|         </dependency>
 | |
|         <!-- springboot分页插件 -->
 | |
|         <dependency>
 | |
|             <groupId>com.github.pagehelper</groupId>
 | |
|             <artifactId>pagehelper-spring-boot-starter</artifactId>
 | |
|             <!-- 特别注意版本问题, 看到评论以后得以纠正 -->
 | |
|             <version>1.2.3</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>commons-lang</groupId>
 | |
|             <artifactId>commons-lang</artifactId>
 | |
|             <version>2.6</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.vaadin.external.google</groupId>
 | |
|             <artifactId>android-json</artifactId>
 | |
|             <version>0.0.20131108.vaadin1</version>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
|         <!-- net.sf.json -->
 | |
|         <dependency>
 | |
|             <groupId>net.sf.json-lib</groupId>
 | |
|             <artifactId>json-lib</artifactId>
 | |
|             <version>2.4</version>
 | |
|             <classifier>jdk15</classifier>
 | |
|         </dependency>
 | |
|         <!-- redis-->
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.data</groupId>
 | |
|             <artifactId>spring-data-redis</artifactId>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
 | |
|         <dependency>
 | |
|             <groupId>redis.clients</groupId>
 | |
|             <artifactId>jedis</artifactId>
 | |
|             <version>3.0.1</version>
 | |
|         </dependency>
 | |
|         <!-- pool 对象池 -->
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-pool2</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.commons</groupId>
 | |
|             <artifactId>commons-lang3</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.aspectj</groupId>
 | |
|             <artifactId>aspectjweaver</artifactId>
 | |
|         </dependency>
 | |
|         <!-- oracle -->
 | |
|         <dependency>
 | |
|             <groupId>com.oracle</groupId>
 | |
|             <artifactId>ojdbc6</artifactId>
 | |
|             <version>11.2.0.3</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>cn.afterturn</groupId>
 | |
|             <artifactId>easypoi-base</artifactId>
 | |
|             <version>4.0.0</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans -->
 | |
|         <!--<dependency>
 | |
|             <groupId>org.apache.xmlbeans</groupId>
 | |
|             <artifactId>xmlbeans</artifactId>
 | |
|             <version>3.1.0</version>
 | |
|         </dependency>-->
 | |
|         <dependency>
 | |
|             <groupId>com.alibaba</groupId>
 | |
|             <artifactId>fastjson</artifactId>
 | |
|             <version>1.1.22</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.httpcomponents</groupId>
 | |
|             <artifactId>httpclient</artifactId>
 | |
|             <version>4.3.2</version>
 | |
|             <type>jar</type>
 | |
|             <scope>compile</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.apache.httpcomponents</groupId>
 | |
|             <artifactId>httpcore</artifactId>
 | |
|             <version>4.3.1</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>commons-codec</groupId>
 | |
|             <artifactId>commons-codec</artifactId>
 | |
|             <version>1.4</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>net.sourceforge.jtds</groupId>
 | |
|             <artifactId>jtds</artifactId>
 | |
|             <version>1.3.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>commons-beanutils</groupId>
 | |
|             <artifactId>commons-beanutils</artifactId>
 | |
|             <version>1.9.3</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>net.sf.ezmorph</groupId>
 | |
|             <artifactId>ezmorph</artifactId>
 | |
|             <version>1.0.6</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>eu.bitwalker</groupId>
 | |
|             <artifactId>UserAgentUtils</artifactId>
 | |
|             <version>1.21</version>
 | |
|         </dependency>
 | |
|         <!-- word文档转pdf -->
 | |
|         <dependency>
 | |
|             <groupId>com.documents4j</groupId>
 | |
|             <artifactId>documents4j-local</artifactId>
 | |
|             <version>1.0.3</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.documents4j</groupId>
 | |
|             <artifactId>documents4j-transformer-msoffice-word</artifactId>
 | |
|             <version>1.0.3</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
|     <properties>
 | |
|         <maven.compiler.source>8</maven.compiler.source>
 | |
|         <maven.compiler.target>8</maven.compiler.target>
 | |
|     </properties>
 | |
| 
 | |
| </project> |