iotkit-parent/iot-common/iot-common-core/pom.xml

128 lines
3.7 KiB
XML
Raw Normal View History

2023-02-27 05:25:38 +00:00
<?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">
2023-05-06 06:46:44 +00:00
<modelVersion>4.0.0</modelVersion>
2023-02-27 05:25:38 +00:00
<parent>
2023-05-06 06:46:44 +00:00
<artifactId>iot-common</artifactId>
2023-02-27 05:25:38 +00:00
<groupId>cc.iotkit</groupId>
2023-05-06 06:46:44 +00:00
<version>${revision}</version>
2023-02-27 05:25:38 +00:00
</parent>
2023-05-06 06:46:44 +00:00
<artifactId>iot-common-core</artifactId>
2023-02-27 05:25:38 +00:00
2023-05-06 06:46:44 +00:00
<description>
此模块为通用业务逻辑或工具类
</description>
2023-02-27 05:25:38 +00:00
<dependencies>
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
2023-04-09 06:44:33 +00:00
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
2023-04-09 01:06:58 +00:00
2023-05-28 06:30:58 +00:00
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</dependency>
2023-05-18 00:04:04 +00:00
<!-- JSON工具类 -->
2023-04-09 01:06:58 +00:00
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
2023-04-09 01:06:58 +00:00
</dependency>
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2023-04-09 01:06:58 +00:00
</dependency>
2023-04-09 06:44:33 +00:00
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
2023-05-15 00:31:02 +00:00
<!-- Spring框架基本的核心工具 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</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>cn.hutool</groupId>
<artifactId>hutool-http</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-extra</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-json</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.linpeilie</groupId>
<artifactId>mapstruct-plus-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
2023-05-31 03:01:10 +00:00
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
2023-05-18 00:04:04 +00:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2023-05-16 00:36:47 +00:00
<dependency>
<groupId>org.lionsoul</groupId>
<artifactId>ip2region</artifactId>
</dependency>
2023-04-09 01:06:58 +00:00
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2023-04-09 01:06:58 +00:00
</dependency>
</dependencies>
2023-05-15 00:31:02 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
2023-02-27 05:25:38 +00:00
</project>