com.redmadrobot.kotlin-library
Owner: red_mad_robot Team
Defaults for Kotlin projects
https://github.com/RedMadRobot/gradle-infrastructure
Sources: https://github.com/RedMadRobot/gradle-infrastructure.git
Using the plugins DSL:
plugins {
id("com.redmadrobot.kotlin-library") version "0.19"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redmadrobot.build:infrastructure-kotlin:0.19")
}
}
apply(plugin = "com.redmadrobot.kotlin-library")
Using the plugins DSL:
plugins {
id "com.redmadrobot.kotlin-library" version "0.19"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redmadrobot.build:infrastructure-kotlin:0.19"
}
}
apply plugin: "com.redmadrobot.kotlin-library"