Skip to content

Commit

Permalink
Minor DevPublishPluginExtension kdoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
aSemy committed Jul 13, 2024
1 parent 16c2b4a commit bda334c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/kotlin/DevPublishPluginExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import dev.adamko.gradle.dev_publish.internal.DevPublishInternalApi
import org.gradle.api.file.DirectoryProperty

/**
* Settings for controlling the behaviour of [DevPublishPlugin] and tasks.
* Settings for controlling the behaviour of [DevPublishPlugin] and its tasks.
*/
abstract class DevPublishPluginExtension
@DevPublishInternalApi constructor() {

/**
* Location of the file-based test Maven repository.
*
* The repository is specific per subproject and should not be shared between subprojects.
* The repository is specific per subproject and should not be referenced by other subprojects.
*
* This property should be passed into tests and provided as a Maven repository.
*/
Expand All @@ -21,15 +21,15 @@ abstract class DevPublishPluginExtension
/**
* Location of temporary Maven repository, that will be used to populate [devMavenRepo].
*
* This value should not typically be configured or used.
* This value is intended for internal use and should not typically be configured in build scripts.
*/
@DevPublishInternalApi
abstract val stagingDevMavenRepo: DirectoryProperty

/**
* Temporary storage of individual publications.
*
* This value should not typically be configured or used.
* This value is intended for internal use and should not typically be configured in build scripts.
*/
@DevPublishInternalApi
abstract val publicationsStore: DirectoryProperty
Expand All @@ -39,7 +39,7 @@ abstract class DevPublishPluginExtension
* [dev.adamko.gradle.dev_publish.data.PublicationData]
* checksums used to determine if a publication task is up-to-date.
*
* This value should not typically be configured or used.
* This value is intended for internal use and should not typically be configured in build scripts.
*/
@DevPublishInternalApi
abstract val checksumsStore: DirectoryProperty
Expand Down

0 comments on commit bda334c

Please sign in to comment.