How To Install jcip-annotations on Fedora 36

In this tutorial we learn how to install jcip-annotations in Fedora 36. jcip-annotations is Java annotations for multithreaded software

Introduction

In this tutorial we learn how to install jcip-annotations on Fedora 36.

What is jcip-annotations

This package provides class, field, and method level annotations for describing thread-safety policies. These annotations are relatively unintrusive and are beneficial to both users and maintainers. Users can see immediately whether a class is thread-safe, and maintainers can see immediately whether thread-safety guarantees must be preserved. Annotations are also useful to a third constituency may be able to verify that the code complies with the contract indicated by the annotation, such as verifying that a class annotated with @Immutable actually is immutable.

We can use yum or dnf to install jcip-annotations on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install jcip-annotations.

Install jcip-annotations on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install jcip-annotations using dnf by running the following command:

sudo dnf -y install jcip-annotations

Install jcip-annotations on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install jcip-annotations using yum by running the following command:

sudo yum -y install jcip-annotations

How To Uninstall jcip-annotations on Fedora 36

To uninstall only the jcip-annotations package we can use the following command:

sudo dnf remove jcip-annotations

jcip-annotations Package Contents on Fedora 36

/usr/share/java/jcip-annotations.jar
/usr/share/maven-metadata/jcip-annotations.xml
/usr/share/maven-poms/jcip-annotations.pom

References

Summary

In this tutorial we learn how to install jcip-annotations on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).