Files
pqs/pqs-device/common-device-biz/pom.xml

48 lines
1.6 KiB
XML
Raw Normal View History

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>
<artifactId>pqs-device</artifactId>
<groupId>com.njcn</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2022-09-29 19:43:14 +08:00
<artifactId>common-device-biz</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>
2022-09-29 19:43:14 +08:00
2022-06-21 20:47:46 +08:00
<dependency>
<groupId>com.njcn</groupId>
<artifactId>common-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.njcn</groupId>
<artifactId>common-db</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.njcn</groupId>
2023-02-15 11:27:49 +08:00
<artifactId>${micro.sdk}</artifactId>
2022-06-21 20:47:46 +08:00
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.njcn</groupId>
<artifactId>common-poi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.influxdb</groupId>
<artifactId>influxdb-java</artifactId>
</dependency>
</dependencies>
2022-09-29 19:43:14 +08:00
</project>