io.github.byteflys.compressor
所有者: Google2000
可以将来自任何地方的文件打包为jar的压缩程序
https://github.com/byteflys/plugin-file-compressor
资源: https://github.com/byteflys/plugin-file-compressor.git
版本 3.0.4 (最新版)
3.0.4
创建于 2024年5月25日。
可以将来自任何地方的文件打包为jar的压缩程序
使用 plugins DSL
plugins {
id("io.github.byteflys.compressor") version "3.0.4"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.byteflys:compressor:3.0.4")
}
}
apply(plugin = "io.github.byteflys.compressor")
使用 plugins DSL
plugins {
id "io.github.byteflys.compressor" version "3.0.4"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.byteflys:compressor:3.0.4"
}
}
apply plugin: "io.github.byteflys.compressor"