<?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>iplatform</artifactId>
|
<groupId>com.iplatform</groupId>
|
<version>2.7.18</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>iplatform-gather</artifactId>
|
<name>iplatform-gather</name>
|
<packaging>jar</packaging>
|
|
<properties>
|
</properties>
|
|
<dependencies>
|
<!-- 平台基础模块依赖,2022/09/20 -->
|
<!-- <dependency>-->
|
<!-- <groupId>com.iplatform</groupId>-->
|
<!-- <artifactId>iplatform-base</artifactId>-->
|
<!-- </dependency>-->
|
|
<!-- 平台调度器管理,2022/09/09 -->
|
<dependency>
|
<groupId>com.iplatform</groupId>
|
<artifactId>iplatform-scheduler</artifactId>
|
</dependency>
|
|
<!-- host pojo依赖,2022/09/22 -->
|
<dependency>
|
<groupId>com.iplatform</groupId>
|
<artifactId>iplatform-model-pojo</artifactId>
|
</dependency>
|
|
<!-- 必须依赖数据库支持,2022/09/22 -->
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-jdbc</artifactId>
|
</dependency>
|
|
<!-- 基础库:采集存储,2022/09/09 -->
|
<dependency>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-gather-store</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-infrastructure</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>com.walkersoft</groupId>
|
<artifactId>walker-jdbc</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|