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

58 lines
1.6 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>
2023-04-09 06:44:33 +00:00
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
2023-04-09 06:44:33 +00:00
<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
<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-04-09 01:06:58 +00:00
<dependency>
2023-05-06 06:46:44 +00:00
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
2023-04-09 01:06:58 +00:00
</dependency>
</dependencies>
2023-02-27 05:25:38 +00:00
</project>