I have the following configuration (edited for brevity):
apply plugin: ‘maven’
project.version = ‘1.2’
configurations {
deployerJars
}
dependencies {
deployerJars “org.apache.maven.wagon:wagon-ssh:2.2”
}
uploadArchives {
repositories.mavenDeployer {
configuration = configurations.deployerJars
repository(url: ‘./repo’)
pom.groupId = ‘a.b’
}
}
I expected the artifacts to be stored in the ‘./repo’ directory, instead I see that the ‘./epo’ directory has been created.