How To Install libmodello-java-doc on Debian 10

Learn how to install libmodello-java-doc on Debian 10 with this tutorial. libmodello-java-doc is Data Model toolkit in use by the Maven 2 Project (documentation)

Introduction

In this tutorial we learn how to install libmodello-java-doc on Debian 10.

What is libmodello-java-doc

libmodello-java-doc is:

Once a DataModel is defined, the toolkit can be used to generate any of the following at compile time.

* Java Pojos of the DataModel.
* Java Pojos to XML Writer. (provided via xpp3, stax, jdom or dom4j)
* XML to Java Pojos Reader. (provided via xpp3, stax or dom4j)
* XDOC documentation of the DataModel.
* XML Schema to validate the DataModel.

Modello is used to build the maven system.

This package provides the API documentation for Modello.

There are three methods to install libmodello-java-doc on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libmodello-java-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libmodello-java-doc using apt-get by running the following command:

sudo apt-get -y install libmodello-java-doc

Install libmodello-java-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmodello-java-doc using apt by running the following command:

sudo apt -y install libmodello-java-doc

Install libmodello-java-doc Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libmodello-java-doc using aptitude by running the following command:

sudo aptitude -y install libmodello-java-doc

How To Uninstall libmodello-java-doc on Debian 10

To uninstall only the libmodello-java-doc package we can use the following command:

sudo apt-get remove libmodello-java-doc

Uninstall libmodello-java-doc And Its Dependencies

To uninstall libmodello-java-doc and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove libmodello-java-doc

Remove libmodello-java-doc Configurations and Data

To remove libmodello-java-doc configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge libmodello-java-doc

Remove libmodello-java-doc configuration, data, and all of its dependencies

We can use the following command to remove libmodello-java-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libmodello-java-doc

Dependencies

libmodello-java-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install libmodello-java-doc package on Debian 10 using different package management tools: apt, apt-get and aptitude.