com.vanniktech.maven.publish.Configurer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-maven-publish-plugin Show documentation
Show all versions of gradle-maven-publish-plugin Show documentation
Gradle plugin that configures publish tasks to automatically upload all of your Java, Kotlin, Gradle, or Android libraries to any Maven instance.
package com.vanniktech.maven.publish
internal interface Configurer {
/**
* Needs to be called for all targets before `addComponent` and
* `addTaskOutput`.
*/
fun configureTarget(target: MavenPublishTarget)
fun configureKotlinMppProject()
fun configureGradlePluginProject()
fun configureAndroidArtifacts()
fun configureJavaArtifacts()
}