From a6b76726ea057d8910adf2864131182c1dd06888 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Tue, 15 Sep 2020 14:46:54 -0400 Subject: [PATCH] modified gradle files to add a documentation generation system --- build.gradle | 2 ++ settings.gradle | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/build.gradle b/build.gradle index 0cbe343..ff153d0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = "1.4.0" + ext.dokka_version = "1.4.0" repositories { google() jcenter() @@ -8,6 +9,7 @@ buildscript { dependencies { classpath "com.android.tools.build:gradle:4.0.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/settings.gradle b/settings.gradle index c425784..d0d4846 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,9 @@ +pluginManagement { + repositories { + gradlePluginPortal() + jcenter() + } +} + rootProject.name = "ConversionApp" include ':app'