From 53b325d52208bfd44ba6a524ce3dda5379aed699 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 17 Oct 2019 18:53:08 +0200 Subject: Move the plugins to the separate directory. Fix common module detection. --- kvision-tools/kvision-compiler-plugin/build.gradle | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 kvision-tools/kvision-compiler-plugin/build.gradle (limited to 'kvision-tools/kvision-compiler-plugin/build.gradle') diff --git a/kvision-tools/kvision-compiler-plugin/build.gradle b/kvision-tools/kvision-compiler-plugin/build.gradle new file mode 100644 index 00000000..3b00300c --- /dev/null +++ b/kvision-tools/kvision-compiler-plugin/build.gradle @@ -0,0 +1,16 @@ +apply plugin: 'kotlin-platform-jvm' +apply plugin: "kotlin-kapt" +apply plugin: "maven" + +dependencies { + compile "de.jensklingenberg:mpapt-runtime:$mpaptRuntimeVersion" + expectedBy project(":kvision-modules:kvision-common-annotations") + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" + compileOnly "org.jetbrains.kotlin:kotlin-compiler-embeddable" + compileOnly "com.google.auto.service:auto-service:$autoServiceVersion" + kapt "com.google.auto.service:auto-service:$autoServiceVersion" +} + +kapt { + includeCompileClasspath = false +} -- cgit