17 Star 142 Fork 27

黑子鱼咖 / Cofe Mybatis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle.kts 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
黑子鱼咖 提交于 2023-02-24 21:57 . feat: support 2023.1
/*
* Copyright (C) 2019-2023 cofe
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*
* Copyright (C) 2019-2021 cofe
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
fun properties(key: String) = project.findProperty(key).toString()
plugins {
java
id("org.jetbrains.intellij") version "1.13.0" apply (false)
}
group = properties("group")
version = (properties("pluginVersion") + "-" + properties("sdkSinceBuild"))
allprojects {
repositories {
maven("https://www.jetbrains.com/intellij-repository/releases")
maven("https://www.jetbrains.com/intellij-repository/snapshots")
maven("https://cache-redirector.jetbrains.com/intellij-dependencies")
mavenCentral()
}
tasks {
withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = "17"
targetCompatibility = "17"
options.compilerArgs.addAll(
listOf(
"-Xlint:deprecation"
)
)
}
}
}
tasks {
create<Zip>("releaseVersion") {
dependsOn(":core:copyDependenciesToLibs")
from("core/build/libs")
into(properties("pluginName") + "/lib")
destinationDirectory.set(file("/"))
archiveBaseName.set(properties("pluginName"))
archiveVersion.set(properties("pluginVersion"))
archiveClassifier.set(properties("sdkSinceBuild"))
archiveExtension.set("zip")
doLast {
delete("resources_zh/build", "lang/build", "core/build", "build")
}
}
}
Java
1
https://gitee.com/cofedream/Cofe-Mybatis.git
git@gitee.com:cofedream/Cofe-Mybatis.git
cofedream
Cofe-Mybatis
Cofe Mybatis
develop

搜索帮助