org.gradle.integtests.resource.s3.fixtures.MavenS3Module.groovy Maven / Gradle / Ivy
/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.integtests.resource.s3.fixtures
import org.gradle.test.fixtures.maven.DelegatingMavenModule
import org.gradle.test.fixtures.maven.MavenFileModule
import org.gradle.test.fixtures.maven.MavenModule
class MavenS3Module extends DelegatingMavenModule implements MavenModule {
MavenFileModule backingModule
S3Server server
String bucket
String repositoryPath
MavenS3Module(S3Server server, MavenFileModule backingModule, String repositoryPath, String bucket) {
super(backingModule)
this.bucket = bucket
this.server = server
this.backingModule = backingModule
this.repositoryPath = repositoryPath
}
S3Artifact getPom() {
return new S3Artifact(server, pomFile, repositoryPath, bucket)
}
S3Artifact getArtifact() {
return new S3Artifact(server, artifactFile, repositoryPath, bucket)
}
S3Artifact getMetaData() {
new S3Artifact(server, backingModule.metaDataFile, repositoryPath, bucket)
}
S3Artifact getMavenRootMetaData() {
new S3Artifact(server, backingModule.rootMetaDataFile, repositoryPath, bucket)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy