public class LegacyMavenPublishingRepositoryAction
extends java.lang.Object
implements org.gradle.api.Action<org.gradle.api.Project>
uploadArchives {
repositories {
maven {
url = System.getProperty('AProxDeployUrl')
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = "Bearer " + System.getProperty('accessToken')
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
}
| Constructor and Description |
|---|
LegacyMavenPublishingRepositoryAction() |
| Modifier and Type | Method and Description |
|---|---|
void |
execute(org.gradle.api.Project project) |