2024-10-08 09:38:54 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
2025-03-04 10:42:17 +08:00
|
|
|
|
开源代码,仅供学习和交流研究使用,商用请联系三丙
|
|
|
|
|
|
微信:mohan_88888
|
|
|
|
|
|
抖音:程序员三丙
|
|
|
|
|
|
付费课程知识星球:https://t.zsxq.com/aKtXo
|
2024-10-08 09:38:54 +08:00
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
|
<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>
|
|
|
|
|
|
<groupId>sanbing</groupId>
|
|
|
|
|
|
<artifactId>jcpp-parent</artifactId>
|
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>jcpp-infrastructure-util</artifactId>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<name>JChargePointProtocol Infrastructure Util Module</name>
|
|
|
|
|
|
<description>基础工具模块</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<main.dir>${basedir}/..</main.dir>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.validation</groupId>
|
|
|
|
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
|
|
<artifactId>jakarta.el</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
|
<artifactId>netty-buffer</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-09-09 08:23:59 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.owasp.antisamy</groupId>
|
|
|
|
|
|
<artifactId>antisamy</artifactId>
|
|
|
|
|
|
</dependency>
|
2024-10-08 09:38:54 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|