KlutterDependencyHandler

class KlutterDependencyHandler(project: Project)

A Jetbrains 'kotlin' inspired dependency handler which makes it easier to add klutter dependencies in a build.gradle(.kts) file as follows:

klutter {
implementation("annotations")
implementation("annotations", version = "2022.r8")
}

Constructors

Link copied to clipboard
constructor(project: Project)

Functions

Link copied to clipboard
fun addImplementation(dependencyNotation: String)
Link copied to clipboard
fun addKlutterImplementation(simpleModuleName: String, version: String? = null)
Link copied to clipboard
fun addKlutterTestImplementation(simpleModuleName: String, version: String? = null)
Link copied to clipboard
fun includeCompilerPlugin(version: String? = null, versionKore: String? = null)