From 60fff469304b4d06e87f89d4a79dd1c1b22025ad Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Mon, 12 Mar 2018 17:13:20 +0300 Subject: [PATCH] [gradle-plugin] Mention `artifact project, library` DSL in readme --- GRADLE_PLUGIN.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GRADLE_PLUGIN.md b/GRADLE_PLUGIN.md index bef01ffa97c..ceb96007dc8 100644 --- a/GRADLE_PLUGIN.md +++ b/GRADLE_PLUGIN.md @@ -189,6 +189,9 @@ and set dependencies between building tasks. // Artifact object or just its name may be used artifact 'foo' artifact kotlinArtifacts.bar + + // Artifacts from other projects are also allowed + artifact project(':bazProject'), 'bazLibrary' // Interopability libraries are also allowed // Use it instead of the `useInterop` method available in versions before 0.3.4 @@ -428,7 +431,7 @@ tables below. artifact 'baz' // An artifact from another project - artifact project(':path:to:a:project', 'artifcatName') + artifact project(':path:to:a:project'), 'artifcatName' // All libraries from anohter project allLibrariesFrom project(':some:project')