Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ We are evaluating to make this the default, you can provide feedback here in [#1
- [Database](#database)
- [Date and Time](#date-and-time)
- [Decentralization](#decentralization)
- [Decompilation](#decompilation)
- [Dependency Injection](#dependency-injection)
- [Development](#development)
- [Distributed Applications](#distributed-applications)
Expand Down Expand Up @@ -398,6 +399,17 @@ _Libraries that handle decentralization tasks._

- [java-tron](https://github.com/tronprotocol/java-tron) Implementation of the Tron Protocol, whic utilizes blockchains to develop decentralized applications.

### Decompilation

_Libraries for decompiling JVM bytecode._

- [CFR](https://github.com/leibnitz27/cfr) - Java decompiler focused on modern language features.
- [Fernflower](https://github.com/JetBrains/fernflower) - Java decompiler with broad JVM bytecode support.
- [JD-Core](https://github.com/java-decompiler/jd-core) - Core Java decompiler library.
- [Procyon](https://github.com/mstrobel/procyon) - Java decompiler and metadata toolkit.
- [transformer-api](https://github.com/nbauma109/transformer-api) - Unified API that exposes multiple decompilers through one in-memory transformation interface.
- [Vineflower](https://github.com/Vineflower/vineflower) - Modern maintained fork of Fernflower.

### Dependency Injection

_Libraries that help to realize the [Inversion of Control](https://en.wikipedia.org/wiki/Inversion_of_control) paradigm._
Expand Down