3 Star 12 Fork 4

简简aw/MyWorld

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
简简aw 提交于 2022-06-08 14:38 . 1.19
import java.text.SimpleDateFormat
plugins {
id 'java'
}
group 'cn.jja8.personWorld'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation project("Main:All")
implementation project("Main:Bukkit")
implementation project("Main:Bungeecord")
implementation project("Main:Bukkit:Version:v1_17_R1")
implementation project("Main:Bukkit:Version:v1_18_R2")
implementation project("Main:Bukkit:Version:v1_12_R1")
implementation project("Main:Bukkit:Version:v1_16_R3")
implementation project("Main:Bukkit:Version:v1_19_R1")
}
test {
useJUnitPlatform()
}
jar.doFirst {
//获取当前时间作为版本号
SimpleDateFormat formatter = new SimpleDateFormat("yyyy.MM.dd.HHmm")
//设置版本号
version = formatter.format(new Date())+"-new";//"0.03"//
//替换配置文件版本号
Iterator<File> 文件列表 = fileTree(dir: "${projectDir}/build/resources/main/", includes: ['*yml']).getFiles().iterator()
while (文件列表.hasNext()) {
替换文本(文件列表.next(), '版本号', version.toString())
}
}
jar{
//将依赖植入jar包
configurations.implementation.canBeResolved(true)
from {
configurations.implementation.collect {
setDuplicatesStrategy(DuplicatesStrategy.EXCLUDE)
it.isDirectory() ? it : zipTree(it)
}
}
into('assets') {
from 'assets'
}
}
/**
用作替换文件中的文本
*/
def static 替换文本(File file, String key, String value) {
def fileText = file.text
def regex = '\\$\\{' + key + '\\}'
fileText = (fileText =~ /${regex}/).replaceAll(value)
file.write(fileText)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/jja8/MyWorld.git
git@gitee.com:jja8/MyWorld.git
jja8
MyWorld
MyWorld
jianjianai

搜索帮助