1 Star 1 Fork 1

su3795/jd-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 3.03 KB
一键复制 编辑 原始数据 按行查看 历史
emmanue1 提交于 2020-01-20 18:20 . Fix syntax errors in decompiled sources
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
dependencies {
testCompile 'commons-codec:commons-codec:1.13'
testCompile 'org.apache.commons:commons-collections4:4.1'
testCompile 'org.apache.commons:commons-imaging:1.0-alpha1'
testCompile 'org.apache.commons:commons-lang3:3.9'
testCompile 'com.jakewharton:disklrucache:2.0.2'
testCompile 'com.squareup:javapoet:1.11.1'
testCompile 'com.squareup:javawriter:2.5.1'
testCompile 'joda-time:joda-time:2.10.5'
testCompile 'org.joda:joda-convert:2.2.1'
testCompile 'org.jsoup:jsoup:1.12.1'
testCompile 'junit:junit:4.12'
testCompile 'javax.jms:javax.jms-api:2.0.1'
testCompile 'javax.mail:javax.mail-api:1.6.2'
testCompile 'com.squareup.mimecraft:mimecraft:1.1.1'
testCompile 'org.scribe:scribe:1.3.7'
testCompile 'com.sparkjava:spark-core:2.9.1'
testCompile 'log4j:log4j:1.2.17'
testCompile 'com.google.guava:guava:12.0'
}
version='1.1.4'
tasks.withType(JavaCompile) {
sourceCompatibility = targetCompatibility = '1.8'
options.compilerArgs << '-Xlint:deprecation'
options.compilerArgs << '-Xlint:unchecked'
options.encoding = 'UTF-8'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
}
}
repositories {
jcenter()
}
jar {
manifest {
attributes 'JD-Core-Version': version
}
}
// Publication to JCenter Maven repository
task sourceJar(type: Jar) {
classifier 'sources'
from sourceSets.main.allJava
}
publishing {
publications {
publicationJdCore(MavenPublication) {
groupId 'org.jd'
artifactId 'jd-core'
version project.version
from components.java
artifact tasks.sourceJar
}
}
}
bintray {
// Command: gradlew -Dbintray.user=XXX -Dbintray.key=YYY bintrayUpload
user = System.getProperty('bintray.user')
key = System.getProperty('bintray.key')
publications = ['publicationJdCore']
dryRun = false //[Default: false] Whether to run this as dry-run, without deploying
publish = true //[Default: false] Whether version should be auto published after an upload
override = false //[Default: false] Whether to override version artifacts already published
pkg {
userOrg = 'java-decompiler'
repo = 'maven'
name = 'org.jd:jd-core'
description = 'JD-Core is a JAVA decompiler written in JAVA.'
licenses = ['GPL-3.0']
websiteUrl = 'https://github.com/java-decompiler/jd-core'
issueTrackerUrl = 'https://github.com/java-decompiler/jd-core/issues'
vcsUrl = 'https://github.com/java-decompiler/jd-core.git'
publicDownloadNumbers = true
version {
name = project.version
released = new Date()
}
}
}
// 'cleanIdea' task extension //
cleanIdea.doFirst {
delete project.name + '.iws'
delete 'out'
followSymlinks = true
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wolf_3795/jd-core.git
git@gitee.com:wolf_3795/jd-core.git
wolf_3795
jd-core
jd-core
master

搜索帮助