https://github.com/windup/class-body-stripper
https://github.com/windup/class-body-stripper
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/windup/class-body-stripper
- Owner: windup
- License: epl-1.0
- Created: 2016-06-02T22:13:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-03T13:57:09.000Z (about 9 years ago)
- Last Synced: 2025-01-19T10:43:24.025Z (5 months ago)
- Language: Java
- Size: 10.7 KB
- Stars: 1
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
== Class Body Striper
Class Body stripper is a tool for stripping method bodies from classes in jar archive to reduce the size of the jar and keep the class bytecode to be resolvable by jave compiler.
=== Usage
On command line you can use fat jar which includes all required dependencies:
```
java -jar class-body-stripper--jar-with-dependencies.jar
```If you would like to it use with detached jar dependencies:
```
java -cp asm-5.1.jar:commons-io-2.4.jar -jar class-body-stripper-.jar
```