How To Install procyon-reflection on Rocky Linux 8
Introduction
In this tutorial we learn how to install procyon-reflection on Rocky Linux 8.
What is procyon-reflection
The procyon-reflection framework provides a rich reflection and code generation API with full support for generics, wildcards, and other high-level Java type concepts. It is based on .NET’s System.Reflection and System.Reflection. Emit APIs and is meant to address many of the shortcomings of the core Java reflection API, which offers rather limited and cumbersome support for generic type inspection. Its code generation facilities include a TypeBuilder, MethodBuilder, and a bytecode emitter.
We can use yum or dnf to install procyon-reflection on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install procyon-reflection.
Install procyon-reflection on Rocky Linux 8 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install procyon-reflection using dnf by running the following command:
sudo dnf -y install procyon-reflection
Install procyon-reflection on Rocky Linux 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install procyon-reflection using yum by running the following command:
sudo yum -y install procyon-reflection
How To Uninstall procyon-reflection on Rocky Linux 8
To uninstall only the procyon-reflection package we can use the following command:
sudo dnf remove procyon-reflection
procyon-reflection Package Contents on Rocky Linux 8
/usr/share/doc/procyon-reflection
/usr/share/doc/procyon-reflection/README.md
/usr/share/java/procyon
/usr/share/java/procyon/procyon-reflection-0.5.33.jar
/usr/share/java/procyon/procyon-reflection.jar
/usr/share/licenses/procyon-reflection
/usr/share/licenses/procyon-reflection/License.txt
References
Summary
In this tutorial we learn how to install procyon-reflection on Rocky Linux 8 using yum and dnf.