com.anatawa12.tools.decompileCrasher
Owner: anatawa12
A tool to make a Jar Hard to decompile. Decompiler will make invalid source code or internal error will be thrown
https://github.com/anatawa12/DecompileCrasher
Sources: https://github.com/anatawa12/DecompileCrasher
Version 1.2.3 (latest)
1.2.3
Created 27 April 2021.
A tool to make a Jar Hard to decompile. Decompiler will make invalid source code or internal error will be thrown
Using the plugins DSL:
plugins {
id("com.anatawa12.tools.decompileCrasher") version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.anatawa12.decompileCrasher:gradle-plugin:1.2.3")
}
}
apply(plugin = "com.anatawa12.tools.decompileCrasher")
Using the plugins DSL:
plugins {
id "com.anatawa12.tools.decompileCrasher" version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.anatawa12.decompileCrasher:gradle-plugin:1.2.3"
}
}
apply plugin: "com.anatawa12.tools.decompileCrasher"