Skip to content

Commit

Permalink
docs(plugins): Align terminology for KSP-based plugins
Browse files Browse the repository at this point in the history
These are now the descriptor's ids, not names.

Signed-off-by: Sebastian Schuberth <[email protected]>
sschuberth committed Nov 16, 2024
1 parent fa45428 commit 4d11189
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion advisor/src/main/kotlin/AdviceProviderFactory.kt
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ import org.ossreviewtoolkit.plugins.api.PluginFactory
interface AdviceProviderFactory : PluginFactory<AdviceProvider> {
companion object {
/**
* All [advice provider factories][AdviceProviderFactory] available in the classpath, associated by their names.
* All [advice provider factories][AdviceProviderFactory] available in the classpath, associated by their ids.
*/
val ALL by lazy { PluginFactory.getAll<AdviceProviderFactory, AdviceProvider>() }
}
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ interface PackageConfigurationProviderFactory : PluginFactory<PackageConfigurati
companion object {
/**
* All [package configuration provider factories][PackageConfigurationProviderFactory] available in the
* classpath, associated by their names.
* classpath, associated by their ids.
*/
val ALL by lazy { PluginFactory.getAll<PackageConfigurationProviderFactory, PackageConfigurationProvider>() }

Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ interface PackageCurationProviderFactory : PluginFactory<PackageCurationProvider
companion object {
/**
* All [package curation provider factories][PackageCurationProviderFactory] available in the classpath,
* associated by their names.
* associated by their ids.
*/
val ALL by lazy { PluginFactory.getAll<PackageCurationProviderFactory, PackageCurationProvider>() }

0 comments on commit 4d11189

Please sign in to comment.