<?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>low-consum-manage</artifactId>
|
<groupId>com.consum</groupId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<!--
|
2023-02-11
|
iplatform-file-server 是文件系统管理模块,它支持两种集成形式:
|
1)平台的组件,通过jar集成为平台一个功能模块
|
2)独立部署方式,提供文件操作微服务,实现集群应用。
|
-->
|
<groupId>com.iplatform</groupId>
|
<artifactId>iplatform-file-server</artifactId>
|
<name>iplatform-file-server</name>
|
<packaging>jar</packaging>
|
<version>3.2.0</version>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.iplatform</groupId>
|
<artifactId>iplatform-base</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
</dependencies>
|
</project>
|