├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Jenkinsfile ├── LICENSE ├── README.md ├── image ├── step1.png └── step2.png ├── mvnw ├── mvnw.cmd ├── pom.xml └── src └── main ├── java └── org │ └── inurl │ └── jenkins │ └── plugin │ └── OSSPublisher.java └── resources ├── index.jelly └── org └── inurl └── jenkins └── plugin ├── Messages.properties ├── Messages_zh.properties └── OSSPublisher ├── config.jelly ├── config.properties ├── config_zh.properties ├── help-accessKeyId.html ├── help-accessKeyId_zh.html ├── help-accessKeySecret.html ├── help-accessKeySecret_zh.html ├── help-bucketName.html ├── help-bucketName_zh.html ├── help-endpoint.html ├── help-endpoint_zh.html ├── help-localPath.html ├── help-localPath_zh.html ├── help-remotePath.html └── help-remotePath_zh.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | 2 | buildPlugin() 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/README.md -------------------------------------------------------------------------------- /image/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/image/step1.png -------------------------------------------------------------------------------- /image/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/image/step2.png -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/inurl/jenkins/plugin/OSSPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/java/org/inurl/jenkins/plugin/OSSPublisher.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/Messages_zh.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/Messages_zh.properties -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/config.properties -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/config_zh.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/config_zh.properties -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeyId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeyId.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeyId_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeyId_zh.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeySecret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeySecret.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeySecret_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-accessKeySecret_zh.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-bucketName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-bucketName.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-bucketName_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-bucketName_zh.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-endpoint.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-endpoint_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-endpoint_zh.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-localPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/aliyun-oss-uploader-plugin/HEAD/src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-localPath.html -------------------------------------------------------------------------------- /src/main/resources/org/inurl/jenkins/plugin/OSSPublisher/help-localPath_zh.html: -------------------------------------------------------------------------------- 1 |