WangHan
2025-04-02 a8ba678a3fe5a39da2c732014cebbb66e408e97c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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>