3 Star 8 Fork 0

Gitee 极速下载 / jd-eclipse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/java-decompiler/jd-eclipse
克隆/下载
build.gradle 772 Bytes
一键复制 编辑 原始数据 按行查看 历史
emmanue1 提交于 2019-07-15 18:54 . Update JD-Core 1.0.7
apply plugin: 'distribution'
// Common configuration //
allprojects {
version='2.0.0'
}
subprojects.each { subproject ->
evaluationDependsOn(subproject.path)
}
distributions {
distZip {
// Create JAR files before final ZIP file
dependsOn subprojects.tasks['jar']
// For each file, remove root directory
eachFile { file ->
String path = file.relativePath
file.setPath(path.substring(path.indexOf('/')+1, path.length()))
}
}
main {
contents {
into('features') {
from {
fileTree 'org.jd.ide.eclipse.feature/build/libs'
}
}
into('plugins') {
from {
fileTree 'org.jd.ide.eclipse.plugin/build/libs'
}
}
from 'org.jd.ide.eclipse.site/site.xml', 'LICENSE', 'NOTICE', 'README.md'
}
}
}
Java
1
https://gitee.com/mirrors/jd-eclipse.git
git@gitee.com:mirrors/jd-eclipse.git
mirrors
jd-eclipse
jd-eclipse
master

搜索帮助