From 7649039342c187d9f48513b825abd2fc2ee73b11 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Tue, 16 Apr 2019 11:51:37 -0700 Subject: [PATCH] Added gradle.properties --- .idea/copyright/profiles_settings.xml | 7 +++++++ examples/annotation-processor/kotlin/.gitignore | 17 ++++++++--------- .../kotlin/gradle.properties | 1 + 3 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 examples/annotation-processor/kotlin/gradle.properties diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..1607f69 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/examples/annotation-processor/kotlin/.gitignore b/examples/annotation-processor/kotlin/.gitignore index 32fe2fe..4cfd6f0 100644 --- a/examples/annotation-processor/kotlin/.gitignore +++ b/examples/annotation-processor/kotlin/.gitignore @@ -1,10 +1,3 @@ -**/.idea/dictionaries -**/.idea/gradle.xml -**/.idea/libraries -**/.idea/tasks.xml -**/.idea/workspace.xml -*.iws -*.sublime-* .classpath .DS_Store .gradle @@ -12,12 +5,18 @@ .nb-gradle .project .settings +*.iws +*.sublime-* +**/.idea/dictionaries +**/.idea/gradle.xml +**/.idea/libraries +**/.idea/tasks.xml +**/.idea/workspace.xml /bin /build /deploy /dist /gen -/gradle.properties /lib/kotlin* /libs /local.properties @@ -29,4 +28,4 @@ ehthumbs.db kobaltBuild kobaltw*-test -Thumbs.db \ No newline at end of file +Thumbs.db diff --git a/examples/annotation-processor/kotlin/gradle.properties b/examples/annotation-processor/kotlin/gradle.properties new file mode 100644 index 0000000..170c210 --- /dev/null +++ b/examples/annotation-processor/kotlin/gradle.properties @@ -0,0 +1 @@ +kapt.use.worker.api=true