Files
iot/iot-access/pom.xml

30 lines
914 B
XML
Raw Normal View History

2023-03-30 13:12:17 +08: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</artifactId>
<groupId>com.njcn</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>iot-access</artifactId>
<packaging>pom</packaging>
<name>iot-access</name>
2023-04-18 08:52:08 +08:00
<description>物接入模块</description>
2023-03-30 13:12:17 +08:00
<modules>
<module>access-api</module>
<module>access-boot</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2023-07-06 11:32:25 +08:00
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
2023-03-30 13:12:17 +08:00
</properties>
</project>