2023-02-23 23:23:14 +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>
|
2023-03-01 01:14:42 +08:00
|
|
|
<artifactId>datacap</artifactId>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
2023-11-23 20:35:21 +08:00
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
2023-03-01 01:14:42 +08:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2023-02-23 23:23:14 +08:00
|
|
|
</parent>
|
|
|
|
|
2023-03-01 01:14:42 +08:00
|
|
|
<artifactId>datacap-native-alioss</artifactId>
|
|
|
|
<description>DataCap - Aliyun OSS</description>
|
2023-02-23 23:23:14 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<alioss.version>3.16.1</alioss.version>
|
2023-06-04 14:45:27 +08:00
|
|
|
<plugin.name>datacap-native-alioss</plugin.name>
|
2023-02-23 23:23:14 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap-spi</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-03-01 01:14:42 +08:00
|
|
|
<groupId>io.edurt.datacap</groupId>
|
2023-02-23 23:23:14 +08:00
|
|
|
<artifactId>datacap-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
<version>${alioss.version}</version>
|
2023-06-04 14:45:27 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2023-02-23 23:23:14 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>${assembly-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<finalName>${plugin.name}</finalName>
|
|
|
|
<descriptors>
|
2023-06-04 14:45:27 +08:00
|
|
|
<descriptor>../../configure/assembly/plugin.xml</descriptor>
|
2023-02-23 23:23:14 +08:00
|
|
|
</descriptors>
|
2023-06-04 14:45:27 +08:00
|
|
|
<outputDirectory>../../dist/plugins</outputDirectory>
|
2023-02-23 23:23:14 +08:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|