2024-12-11 11:33:34 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.njcn.gather</groupId>
|
|
|
|
|
<artifactId>CN_Gather</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>detection</artifactId>
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>njcn-common</artifactId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>mybatis-plus</artifactId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>spingboot2.3.12</artifactId>
|
|
|
|
|
<version>2.3.12</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
|
<version>4.1.68.Final</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-12-13 09:20:24 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn.gather</groupId>
|
|
|
|
|
<artifactId>device</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-12-12 18:40:58 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>1.2.83</version>
|
|
|
|
|
</dependency>
|
2024-12-25 20:28:24 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn.gather</groupId>
|
|
|
|
|
<artifactId>storage</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2025-01-13 09:09:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- WordToHtml .doc .odcx poi -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
|
|
|
<version>4.1.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 操作excel的库 注意版本保持一致 poi poi-ooxml poi-scratchpad -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
<version>4.1.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--poi-ooxml和*poi-ooxml-schemas*是poi对2007及以上版本的扩充。-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
|
<version>4.1.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>4.1.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-12-11 11:33:34 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|