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