iotkit-parent/iot-dao/iot-data-model/pom.xml

55 lines
1.6 KiB
XML
Raw Normal View History

2022-03-03 09:24:41 +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">
<parent>
<artifactId>iot-dao</artifactId>
2022-03-03 09:24:41 +00:00
<groupId>cc.iotkit</groupId>
2024-02-08 16:12:27 +00:00
<version>0.5.2-SNAPSHOT</version>
2022-03-03 09:24:41 +00:00
</parent>
2024-02-08 16:12:27 +00:00
<version>0.5.2-SNAPSHOT</version>
2022-03-03 09:24:41 +00:00
<modelVersion>4.0.0</modelVersion>
<artifactId>iot-data-model</artifactId>
2022-03-03 09:24:41 +00:00
<dependencies>
2023-08-07 00:32:23 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-common-core</artifactId>
</dependency>
<!--====================第三方库===================-->
2022-03-03 09:24:41 +00:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
2022-03-19 14:28:28 +00:00
2022-03-03 09:24:41 +00:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
2023-09-19 00:48:28 +00:00
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
2022-03-03 09:24:41 +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>
2022-03-03 09:24:41 +00:00
</project>