2022-06-21 20:47:46 +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>
|
2022-09-29 19:43:14 +08:00
|
|
|
<artifactId>pq-device</artifactId>
|
2022-06-21 20:47:46 +08:00
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-09-29 19:43:14 +08:00
|
|
|
<artifactId>pq-device-boot</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>传统终端模块核心业务</name>
|
2022-06-21 20:47:46 +08:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
2022-09-29 19:43:14 +08:00
|
|
|
<artifactId>pq-device-api</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2023-05-17 17:17:15 +08:00
|
|
|
|
2022-06-21 20:47:46 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
2022-09-29 19:43:14 +08:00
|
|
|
<artifactId>system-api</artifactId>
|
2022-06-21 20:47:46 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
2022-09-29 19:43:14 +08:00
|
|
|
<artifactId>event-api</artifactId>
|
2022-06-21 20:47:46 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
2022-09-29 19:43:14 +08:00
|
|
|
<artifactId>common-web</artifactId>
|
2022-06-21 20:47:46 +08:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2023-05-25 16:23:50 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>common-oss</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2022-06-21 20:47:46 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
2023-05-17 17:17:15 +08:00
|
|
|
</project>
|