From 9d4c9d4e7741943cf2cf2a6bbfbc0707b90ce470 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sat, 5 Dec 2015 23:07:56 -0800 Subject: [PATCH] Comment. --- .../kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt b/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt index ec2d1a31..bf77bace 100644 --- a/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt +++ b/src/main/kotlin/com/beust/kobalt/internal/JvmCompilerPlugin.kt @@ -17,6 +17,11 @@ import java.util.* import javax.inject.Inject import javax.inject.Singleton +/** + * Base classes for plug-ins that compile files on the JVM. This base class requires the bare minimum + * contributors (source files, projects and tasks). Subclasses can add more as they see fit (e.g. test + * source directory, etc...). + */ @Singleton abstract class JvmCompilerPlugin @Inject constructor( open val localRepo: LocalRepo,