如何使用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.jar
和hello2.jar
是我的s3存储桶下我的jar文件的名称我没有'知道这些文件的组ID和工件ID,但我想下载hello1.jar
和hello2.jar
并将其放入本地maven repo,就像任何其他依赖项一样。