1 Star 3 Fork 0

XPYEX/FlyWithFood

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 868 Bytes
一键复制 编辑 原始数据 按行查看 历史
XPYEX 提交于 2024-08-17 01:49 . style: 修改版本号
plugins {
id 'java'
}
allprojects {
apply plugin: 'java'
group = 'me.xpyex.plugin.flywithfood'
version = '2.0.7'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'org.jetbrains:annotations:23.0.0'
compileOnly 'com.google.code.gson:gson:2.9.1'
}
processResources {
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filesMatching('plugin.yml') {
expand props
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
tasks.withType(Javadoc) {
options.encoding = "UTF-8"
}
tasks.withType(Copy) {
duplicatesStrategy 'exclude'
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(8))
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xpyex/FlyWithFood.git
[email protected]:xpyex/FlyWithFood.git
xpyex
FlyWithFood
FlyWithFood
2.x

搜索帮助