如何使用gradle从S3下载依赖jar?

时间:2017-06-21 09:05:14

标签: java maven gradle

如何使用gradle从S3下载依赖jar?

这是我的build.gradle

group 'com.hello'
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'maven-publish'


repositories {
    mavenCentral()
    maven {
        url "https://s3.amazonaws.com/maven-repo-bucket"
        credentials(AwsCredentials) {
            accessKey "${System.getenv('aws_access_id')}"
            secretKey "${System.getenv('aws_secret_key')}"
        }
    }
}

dependencies {
    compile files('hello1.jar')
    compile files('hello2.jar')
    compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
    testCompile group: 'junit', name: 'junit', version: '4.11'
}

maven-repo-bucket是我的 s3存储桶名称hello1.jarhello2.jar是我的s3存储桶下我的jar文件的名称我没有'知道这些文件的组ID和工件ID,但我想下载hello1.jarhello2.jar并将其放入本地maven repo,就像任何其他依赖项一样。

0 个答案:

没有答案