From 8d935dba2f81ddc6920797264431740664b98a47 Mon Sep 17 00:00:00 2001
From: Cedric Beust
Date: Wed, 30 Mar 2016 21:46:03 -0800
Subject: [PATCH] More documentation on properties.
---
plug-in-development/index.html | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
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