io.github.portlek.smol-plugin-gradle
所有者: Hasan Demirtaş
Java 运行时依赖管理。
https://github.com/portlek/smol
源代码: https://github.com/portlek/smol
版本 0.0.1 (最新版)
0.0.1
创建于 2022 年 11 月 15 日。
Java 运行时依赖管理。
使用 插件 DSL
plugins {
id("io.github.portlek.smol-plugin-gradle") version "0.0.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.portlek.smol-plugin-gradle:plugin-gradle:0.0.1")
}
}
apply(plugin = "io.github.portlek.smol-plugin-gradle")
使用 插件 DSL
plugins {
id "io.github.portlek.smol-plugin-gradle" version "0.0.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.portlek.smol-plugin-gradle:plugin-gradle:0.0.1"
}
}
apply plugin: "io.github.portlek.smol-plugin-gradle"