189 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			189 lines
		
	
	
		
			5.6 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"> | |||
|  |     <modelVersion>4.0.0</modelVersion> | |||
|  | 
 | |||
|  |     <parent> | |||
|  |         <groupId>vip.xiaonuo</groupId> | |||
|  |         <artifactId>snowy-base</artifactId> | |||
|  |         <version>1.6.0</version> | |||
|  |         <relativePath>../pom.xml</relativePath> | |||
|  |     </parent> | |||
|  | 
 | |||
|  |     <artifactId>snowy-core</artifactId> | |||
|  | 
 | |||
|  |     <packaging>jar</packaging> | |||
|  | 
 | |||
|  |     <dependencies> | |||
|  | 
 | |||
|  |         <!-- validation --> | |||
|  |         <dependency> | |||
|  |             <groupId>org.springframework.boot</groupId> | |||
|  |             <artifactId>spring-boot-starter-validation</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- web --> | |||
|  |         <dependency> | |||
|  |             <groupId>org.springframework.boot</groupId> | |||
|  |             <artifactId>spring-boot-starter-web</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- aop --> | |||
|  |         <dependency> | |||
|  |             <groupId>org.springframework.boot</groupId> | |||
|  |             <artifactId>spring-boot-starter-aop</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- security --> | |||
|  |         <dependency> | |||
|  |             <groupId>org.springframework.boot</groupId> | |||
|  |             <artifactId>spring-boot-starter-security</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- 数据库驱动,可根据自己需要自行删减,默认使用mysql --> | |||
|  |         <dependency> | |||
|  |             <groupId>mysql</groupId> | |||
|  |             <artifactId>mysql-connector-java</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- oracle --> | |||
|  |         <!--<dependency>
 | |||
|  |             <groupId>com.oracle</groupId> | |||
|  |             <artifactId>ojdbc6</artifactId> | |||
|  |         </dependency>--> | |||
|  | 
 | |||
|  |         <!-- mssql --> | |||
|  |         <!--<dependency>
 | |||
|  |             <groupId>com.microsoft.sqlserver</groupId> | |||
|  |             <artifactId>mssql-jdbc</artifactId> | |||
|  |         </dependency>--> | |||
|  | 
 | |||
|  |         <!-- postgresql --> | |||
|  |        <!-- <dependency>
 | |||
|  |             <groupId>org.postgresql</groupId> | |||
|  |             <artifactId>postgresql</artifactId> | |||
|  |         </dependency>--> | |||
|  | 
 | |||
|  |         <!-- h2 --> | |||
|  |         <!-- <dependency>
 | |||
|  |             <groupId>com.h2database</groupId> | |||
|  |             <artifactId>h2</artifactId> | |||
|  |         </dependency>--> | |||
|  | 
 | |||
|  |         <dependency> | |||
|  |             <groupId>com.antherd</groupId> | |||
|  |             <artifactId>sm-crypto</artifactId> | |||
|  |             <version>0.3.2</version> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- redis,使用jedis客户端排除lettuce --> | |||
|  |         <dependency> | |||
|  |             <groupId>org.springframework.boot</groupId> | |||
|  |             <artifactId>spring-boot-starter-data-redis</artifactId> | |||
|  |             <exclusions> | |||
|  |                 <exclusion> | |||
|  |                     <groupId>io.lettuce</groupId> | |||
|  |                     <artifactId>lettuce-core</artifactId> | |||
|  |                 </exclusion> | |||
|  |             </exclusions> | |||
|  |         </dependency> | |||
|  |         <dependency> | |||
|  |             <groupId>redis.clients</groupId> | |||
|  |             <artifactId>jedis</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- druid连接池 --> | |||
|  |         <dependency> | |||
|  |             <groupId>com.alibaba</groupId> | |||
|  |             <artifactId>druid</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- mybatis-plus --> | |||
|  |         <dependency> | |||
|  |             <groupId>com.baomidou</groupId> | |||
|  |             <artifactId>mybatis-plus-boot-starter</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- hutool --> | |||
|  |         <dependency> | |||
|  |             <groupId>cn.hutool</groupId> | |||
|  |             <artifactId>hutool-all</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- lombok --> | |||
|  |         <dependency> | |||
|  |             <groupId>org.projectlombok</groupId> | |||
|  |             <artifactId>lombok</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!-- fastjson --> | |||
|  |         <dependency> | |||
|  |             <groupId>com.alibaba</groupId> | |||
|  |             <artifactId>fastjson</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--easypoi导入导出--> | |||
|  |         <dependency> | |||
|  |             <groupId>cn.afterturn</groupId> | |||
|  |             <artifactId>easypoi-base</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--libreoffice文档在线预览--> | |||
|  |         <dependency> | |||
|  |             <groupId>org.jodconverter</groupId> | |||
|  |             <artifactId>jodconverter-core</artifactId> | |||
|  |         </dependency> | |||
|  |         <dependency> | |||
|  |             <groupId>org.jodconverter</groupId> | |||
|  |             <artifactId>jodconverter-local</artifactId> | |||
|  |         </dependency> | |||
|  |         <dependency> | |||
|  |             <groupId>org.jodconverter</groupId> | |||
|  |             <artifactId>jodconverter-spring-boot-starter</artifactId> | |||
|  |         </dependency> | |||
|  |         <dependency> | |||
|  |             <groupId>org.libreoffice</groupId> | |||
|  |             <artifactId>ridl</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--justauth第三方登录--> | |||
|  |         <dependency> | |||
|  |             <groupId>me.zhyd.oauth</groupId> | |||
|  |             <artifactId>JustAuth</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--阿里云上传文件客户端--> | |||
|  |         <dependency> | |||
|  |             <groupId>com.aliyun.oss</groupId> | |||
|  |             <artifactId>aliyun-sdk-oss</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--腾讯云上传文件客户端--> | |||
|  |         <dependency> | |||
|  |             <groupId>com.qcloud</groupId> | |||
|  |             <artifactId>cos_api</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--阿里云短信发送的sdk--> | |||
|  |         <dependency> | |||
|  |             <groupId>com.aliyun</groupId> | |||
|  |             <artifactId>aliyun-java-sdk-core</artifactId> | |||
|  |         </dependency> | |||
|  |         <dependency> | |||
|  |             <groupId>com.aliyun</groupId> | |||
|  |             <artifactId>aliyun-java-sdk-ecs</artifactId> | |||
|  |         </dependency> | |||
|  | 
 | |||
|  |         <!--腾讯云短信sdk--> | |||
|  |         <dependency> | |||
|  |             <groupId>com.tencentcloudapi</groupId> | |||
|  |             <artifactId>tencentcloud-sdk-java</artifactId> | |||
|  |         </dependency> | |||
|  |     </dependencies> | |||
|  | 
 | |||
|  |     <build> | |||
|  |         <finalName>${project.artifactId}</finalName> | |||
|  |     </build> | |||
|  | </project> |