data class NexusOptions
NexusOptions(baseUrl: String, stagingProfile: String?, repositoryUsername: String?, repositoryPassword: String?) |
var baseUrl: String
Base url of the REST API of the nexus instance you are using. Defaults to OSSRH ("https://oss.sonatype.org/service/local/"). |
|
var repositoryPassword: String?
The username used to access the Nexus REST API. Defaults to the SONATYPE_NEXUS_PASSWORD Gradle property. |
|
var repositoryUsername: String?
The username used to access the Nexus REST API. Defaults to the SONATYPE_NEXUS_USERNAME Gradle property. |
|
var stagingProfile: String?
The groupId associated with your username. Defaults to the GROUP Gradle Property. |
fun fromProject(project: Project): NexusOptions |