mirror of
				https://github.com/continew-org/continew-starter.git
				synced 2025-10-31 10:57:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			3.3 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>top.charles7c.continew</groupId>
 | ||
|         <artifactId>continew-starter</artifactId>
 | ||
|         <version>${revision}</version>
 | ||
|     </parent>
 | ||
| 
 | ||
|     <artifactId>continew-starter-core</artifactId>
 | ||
|     <packaging>jar</packaging>
 | ||
| 
 | ||
|     <name>${project.artifactId}</name>
 | ||
|     <description>ContiNew Starter 核心模块</description>
 | ||
| 
 | ||
|     <dependencies>
 | ||
|         <!-- Hibernate Validator -->
 | ||
|         <dependency>
 | ||
|             <groupId>org.springframework.boot</groupId>
 | ||
|             <artifactId>spring-boot-starter-validation</artifactId>
 | ||
|         </dependency>
 | ||
| 
 | ||
|         <!-- Spring Boot Web(提供 Spring MVC Web 开发能力,默认内置 Tomcat 服务器) -->
 | ||
|         <dependency>
 | ||
|             <groupId>org.springframework.boot</groupId>
 | ||
|             <artifactId>spring-boot-starter-web</artifactId>
 | ||
|             <!-- 移除内置 Tomcat 服务器 -->
 | ||
|             <exclusions>
 | ||
|                 <exclusion>
 | ||
|                     <groupId>org.springframework.boot</groupId>
 | ||
|                     <artifactId>spring-boot-starter-tomcat</artifactId>
 | ||
|                 </exclusion>
 | ||
|             </exclusions>
 | ||
|         </dependency>
 | ||
| 
 | ||
|         <!-- Undertow 服务器(采用 Java 开发的灵活的高性能 Web 服务器,提供包括阻塞和基于 NIO 的非堵塞机制) -->
 | ||
|         <dependency>
 | ||
|             <groupId>org.springframework.boot</groupId>
 | ||
|             <artifactId>spring-boot-starter-undertow</artifactId>
 | ||
|             <!-- 移除 websocket 依赖,后续使用 websocket 可考虑由 Netty 提供。另可解决日志警告:UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used -->
 | ||
|             <exclusions>
 | ||
|                 <exclusion>
 | ||
|                     <groupId>io.undertow</groupId>
 | ||
|                     <artifactId>undertow-websockets-jsr</artifactId>
 | ||
|                 </exclusion>
 | ||
|             </exclusions>
 | ||
|         </dependency>
 | ||
| 
 | ||
|         <!-- Spring Boot Starter(自动配置相关依赖) -->
 | ||
|         <dependency>
 | ||
|             <groupId>org.springframework.boot</groupId>
 | ||
|             <artifactId>spring-boot-starter</artifactId>
 | ||
|         </dependency>
 | ||
|         <dependency>
 | ||
|             <groupId>org.springframework.boot</groupId>
 | ||
|             <artifactId>spring-boot-configuration-processor</artifactId>
 | ||
|         </dependency>
 | ||
| 
 | ||
|         <!-- 第三方封装 Ip2region(离线 IP 数据管理框架和定位库,支持亿级别的数据段,10 微秒级别的查询性能,提供了许多主流编程语言的 xdb 数据管理引擎的实现) -->
 | ||
|         <dependency>
 | ||
|             <groupId>net.dreamlu</groupId>
 | ||
|             <artifactId>mica-ip2region</artifactId>
 | ||
|         </dependency>
 | ||
| 
 | ||
|         <!-- Hutool(小而全的 Java 工具类库,通过静态方法封装,降低相关 API 的学习成本,提高工作效率,使 Java 拥有函数式语言般的优雅,让 Java 语言也可以“甜甜的”) -->
 | ||
|         <dependency>
 | ||
|             <groupId>cn.hutool</groupId>
 | ||
|             <artifactId>hutool-all</artifactId>
 | ||
|         </dependency>
 | ||
|     </dependencies>
 | ||
| </project> |