2023-06-19 11:38:49 +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-advance</artifactId>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>advance-api</artifactId>
|
|
|
|
|
<name>高级算法服务模块对外接口</name>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2023-06-21 09:13:07 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<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>
|
|
|
|
|
<artifactId>common-microservice</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2023-08-10 16:30:01 +08:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>event-api</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2024-04-23 09:37:41 +08:00
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.sun.jna</groupId>-->
|
|
|
|
|
<!-- <artifactId>jna</artifactId>-->
|
|
|
|
|
<!-- <version>3.0.9</version>-->
|
|
|
|
|
<!-- <scope>compile</scope>-->
|
|
|
|
|
<!-- </dependency>-->
|
2023-06-21 09:13:07 +08:00
|
|
|
<dependency>
|
2024-04-23 09:37:41 +08:00
|
|
|
<groupId>net.java.dev.jna</groupId>
|
2023-06-21 09:13:07 +08:00
|
|
|
<artifactId>jna</artifactId>
|
2024-05-16 09:33:23 +08:00
|
|
|
<version>5.5.0</version>
|
2023-06-21 09:13:07 +08:00
|
|
|
</dependency>
|
2023-07-26 11:20:12 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>common-poi</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>common-oss</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.njcn</groupId>
|
|
|
|
|
<artifactId>harmonic-api</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2024-03-18 15:21:28 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
</dependency>
|
2023-06-21 09:13:07 +08:00
|
|
|
</dependencies>
|
2023-06-19 11:38:49 +08:00
|
|
|
</project>
|