1 Star 10 Fork 10

muyang/AllatoriDeobfuscator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 902 Bytes
一键复制 编辑 原始数据 按行查看 历史
open 提交于 2022-10-27 21:17 +08:00 . 重构代码
plugins {
id 'java'
}
group 'cn.myj2c'
version '1.0-SNAPSHOT'
if (!hasProperty('mainClass')) {
ext.mainClass = 'cn.myj2c.TestAllatori'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.ow2.asm:asm:9.4'
implementation 'org.ow2.asm:asm-tree:9.4'
implementation 'org.ow2.asm:asm-commons:9.4'
implementation 'org.ow2.asm:asm-util:9.4'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.google.guava:guava:31.1-jre'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
jar {
manifest.attributes("Main-Class": getProperty('mainClass'))
}
task obfusticate(type:Exec) {
commandLine 'java', '-jar', 'allatori/allatori.jar', 'allatori/config.xml'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
test {
useJUnitPlatform()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/myj2c/allatori-deobfuscator.git
git@gitee.com:myj2c/allatori-deobfuscator.git
myj2c
allatori-deobfuscator
AllatoriDeobfuscator
master

搜索帮助