9 Star 24 Fork 9

来贝科技 / aliyun-oss-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.45 KB
一键复制 编辑 原始数据 按行查看 历史
Ethan 提交于 2019-11-17 22:31 . 1、升级阿里云OSS的SDK到3.5.0
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>aliyun-oss</artifactId>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.23</version>
</parent>
<version>0.7</version>
<packaging>hpi</packaging>
<name>Aliyun OSS Plugin for Jenkins</name>
<description>Uploads build artifacts or downloads build dependencies using aliyun oss storage</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0 (the "License")</name>
<comments>Licensed under the Apache License, Version 2.0 (the "License").</comments>
</license>
</licenses>
<developers>
<developer>
<id>zhimin</id>
<name>Zhimin Ruan</name>
<email>zhimin@fit2cloud.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.5.0</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
<version>1.14</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>fit2cloud-example</id>
<name>Fit2Cloud Example Release</name>
<url>http://repository-proxy.fit2cloud.com:8080/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>fit2cloud-example</id>
<url>http://repository-proxy.fit2cloud.com:8080/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>
Java
1
https://gitee.com/libfintech/aliyun-oss-plugin.git
git@gitee.com:libfintech/aliyun-oss-plugin.git
libfintech
aliyun-oss-plugin
aliyun-oss-plugin
master

搜索帮助