diff --git a/plug-in-development/index.html b/plug-in-development/index.html index 3c632d0..7995665 100644 --- a/plug-in-development/index.html +++ b/plug-in-development/index.html @@ -577,7 +577,13 @@ object in order to store project specific properties.

 fun taskAssemble(project: Project) : TaskResult {
-project.projectProperties.put(PACKAGES, packages)
+    project.projectProperties.put("packages", packages)
+
+

+ Another plug-in can then query this property as follows: +

+
+    val packages = project.projectProperties.put("packages")
 

Plug-in properties