jmfayard.github.io.gradle-kotlin-dsl-libs
Owner: Jean-Michel Fayard
Painless dependencies management with the gradle kotlin-dsl
https://github.com/jmfayard/gradle-kotlin-dsl-libs
Sources: https://github.com/jmfayard/gradle-kotlin-dsl-libs
Version 0.2.6 (latest)
0.2.6
Created 30 October 2018.
Painless dependencies management with the gradle kotlin-dsl
Using the plugins DSL:
plugins {
id("jmfayard.github.io.gradle-kotlin-dsl-libs") version "0.2.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("jmfayard.github.io:gradle-kotlin-dsl-libs:0.2.6")
}
}
apply(plugin = "jmfayard.github.io.gradle-kotlin-dsl-libs")
Using the plugins DSL:
plugins {
id "jmfayard.github.io.gradle-kotlin-dsl-libs" version "0.2.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "jmfayard.github.io:gradle-kotlin-dsl-libs:0.2.6"
}
}
apply plugin: "jmfayard.github.io.gradle-kotlin-dsl-libs"