From 1259dc87648a024a6f2df580c876c6b77ec43545 Mon Sep 17 00:00:00 2001 From: Timo Bryant Date: Fri, 15 Dec 2023 15:40:24 +0100 Subject: [PATCH] Add build.gradle.kts file in tfidf library Added a new build.gradle.kts file in the tfidf library. This file includes the "docthor.kotlin-library-conventions" plugin. This is the initial setup for the build configuration of the tfidf library. --- libraries/tfidf/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 libraries/tfidf/build.gradle.kts diff --git a/libraries/tfidf/build.gradle.kts b/libraries/tfidf/build.gradle.kts new file mode 100644 index 0000000..1d52d1f --- /dev/null +++ b/libraries/tfidf/build.gradle.kts @@ -0,0 +1,3 @@ +plugins { + id("docthor.kotlin-library-conventions") +}