io.github.portlek.smol-plugin-gradle
Owner: Hasan Demirtaş
Java runtime dependency management.
https://github.com/portlek/smol
Sources: https://github.com/portlek/smol
Version 0.0.1 (latest)
0.0.1
Created 15 November 2022.
Java runtime dependency management.
Using the plugins DSL:
plugins {
id("io.github.portlek.smol-plugin-gradle") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.portlek.smol-plugin-gradle:plugin-gradle:0.0.1")
}
}
apply(plugin = "io.github.portlek.smol-plugin-gradle")
Using the plugins DSL:
plugins {
id "io.github.portlek.smol-plugin-gradle" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.portlek.smol-plugin-gradle:plugin-gradle:0.0.1"
}
}
apply plugin: "io.github.portlek.smol-plugin-gradle"