pl.mareklangiewicz.sourcefun
Owner:
Marek Langiewicz
Updated dependencies for typical java/kotlin/android projects (with IDE support).
https://github.com/langara/DepsKt
Sources: https://github.com/langara/deps.kt
Version 0.2.66 (latest)
Created 10 December 2023.
Updated dependencies for typical java/kotlin/android projects (with IDE support) (source fun).
Using the plugins DSL:
plugins {
id("pl.mareklangiewicz.sourcefun") version "0.2.66"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("pl.mareklangiewicz.deps:DepsKt:0.2.66")
}
}
apply(plugin = "pl.mareklangiewicz.sourcefun")
Using the plugins DSL:
plugins {
id "pl.mareklangiewicz.sourcefun" version "0.2.66"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "pl.mareklangiewicz.deps:DepsKt:0.2.66"
}
}
apply plugin: "pl.mareklangiewicz.sourcefun"