This is an automated email from the ASF dual-hosted git repository. mcasters pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-hop-docs.git
commit 395586c756b5da4020b53b1535f972b6135f9062 Author: Matt Casters <[email protected]> AuthorDate: Thu Nov 12 20:42:44 2020 +0100 Metadata plugins: discovery logic explained --- hop-dev-manual/modules/ROOT/pages/metadata-plugins.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hop-dev-manual/modules/ROOT/pages/metadata-plugins.adoc b/hop-dev-manual/modules/ROOT/pages/metadata-plugins.adoc index b79ab34..4964717 100644 --- a/hop-dev-manual/modules/ROOT/pages/metadata-plugins.adoc +++ b/hop-dev-manual/modules/ROOT/pages/metadata-plugins.adoc @@ -14,6 +14,8 @@ Here are the attributes of the @HopMetadata annotation: * description : an extended description * iconImage : the path to an image which helps identify the metadata in the Hop GUI +The class with this annotation will be found either because it lives in the ```plugins/``` folder of Hop or if it's an internal class and is described in the file ```engine/src/main/resources/hop-metadata-plugins.xml``` + Example: https://github.com/apache/incubator-hop/blob/f8f2ad2d0bc0cfd143ae90cc32e73b6c9e1cda78/engine/src/main/java/org/apache/hop/partition/PartitionSchema.java#L47[PartitionSchema.java]
