mirror of
				https://github.com/continew-org/continew-starter.git
				synced 2025-11-04 22:57:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.5 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.continew</groupId>
 | 
						||
        <artifactId>continew-starter</artifactId>
 | 
						||
        <version>${revision}</version>
 | 
						||
    </parent>
 | 
						||
 | 
						||
    <artifactId>continew-starter-core</artifactId>
 | 
						||
    <description>ContiNew Starter 核心模块</description>
 | 
						||
 | 
						||
    <dependencies>
 | 
						||
        <!-- 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>
 | 
						||
 | 
						||
        <!-- Hibernate Validator -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>org.hibernate.validator</groupId>
 | 
						||
            <artifactId>hibernate-validator</artifactId>
 | 
						||
            <optional>true</optional>
 | 
						||
        </dependency>
 | 
						||
 | 
						||
        <!-- 第三方封装 Ip2region(离线 IP 数据管理框架和定位库,支持亿级别的数据段,10 微秒级别的查询性能,提供了许多主流编程语言的 xdb 数据管理引擎的实现) -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>net.dreamlu</groupId>
 | 
						||
            <artifactId>mica-ip2region</artifactId>
 | 
						||
        </dependency>
 | 
						||
 | 
						||
        <!-- Hutool 核心模块(核心方法及数据结构包) -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>cn.hutool</groupId>
 | 
						||
            <artifactId>hutool-core</artifactId>
 | 
						||
        </dependency>
 | 
						||
 | 
						||
        <!-- Hutool JSON 模块(基于 json.org 官方库改造) -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>cn.hutool</groupId>
 | 
						||
            <artifactId>hutool-json</artifactId>
 | 
						||
        </dependency>
 | 
						||
 | 
						||
        <!-- Hutool 扩展模块(提供对第三方库的工具类支持) -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>cn.hutool</groupId>
 | 
						||
            <artifactId>hutool-extra</artifactId>
 | 
						||
        </dependency>
 | 
						||
 | 
						||
        <!-- Hutool HTTP客户端模块(针对 JDK 的 HttpUrlConnection 做一层封装,简化了 HTTPS 请求、文件上传、Cookie 记忆等操作,使 Http 请求变得无比简单) -->
 | 
						||
        <dependency>
 | 
						||
            <groupId>cn.hutool</groupId>
 | 
						||
            <artifactId>hutool-http</artifactId>
 | 
						||
        </dependency>
 | 
						||
    </dependencies>
 | 
						||
</project> |