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)
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
Add this plugin to your build using the plugins DSL:
plugins {
id("com.anatawa12.tools.decompileCrasher") version "1.2.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.anatawa12.tools.decompileCrasher:com.anatawa12.tools.decompileCrasher.gradle.plugin:1.2.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.anatawa12.tools.decompileCrasher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.anatawa12.tools.decompileCrasher:com.anatawa12.tools.decompileCrasher.gradle.plugin:1.2.3") } } apply(plugin = "com.anatawa12.tools.decompileCrasher")
- Applying plugins to all subprojects .