加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 980 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏建锋 提交于 2023-09-09 15:28 . 1.0.1
subprojects {
group 'vip.sujianfeng.enjoydao'
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: 'signing'
project.ext.setProperty("publishUrl_snapshots", "https://s01.oss.sonatype.org/content/repositories/snapshots/")
project.ext.setProperty("publishUrl_release", "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
//避免编译出的jar存在中文乱码问题
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
tasks.withType(Jar) {
//$rootDir 取项目的顶级目录
destinationDir = file("$rootDir/output/jars")
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
repositories {
maven {
url 'https://s01.oss.sonatype.org/content/repositories/releases/'
}
maven {
url "https://maven.aliyun.com/nexus/content/groups/public/"
}
mavenCentral()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化