From fb645ca719adfba4e751557a9d97f358fafa2f48 Mon Sep 17 00:00:00 2001 From: apriestman Date: Tue, 5 Jan 2021 09:49:42 -0500 Subject: [PATCH] Fix formatting --- docs/doxygen/modDev.dox | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/docs/doxygen/modDev.dox b/docs/doxygen/modDev.dox index 4e8e3a2bcb..53eb6bc416 100644 --- a/docs/doxygen/modDev.dox +++ b/docs/doxygen/modDev.dox @@ -51,14 +51,17 @@ To make a NetBeans module: \subsubsection mod_dev_mod_nb_config Configuring the NetBeans Module After the module is created, you will need to do some further configuration. -- Right click on the newly created module and choose "Properties". -- You will need to configure the module to be dependent on modules from within the Autopsy platform. Go to the "Libraries" area and choose "Add" in the "Module Dependencies" section. Choose the: --- "Autopsy-core" library to get access to the Autopsy services. --- NetBeans "Lookup API" library so that your module can be discovered by Autopsy. -- If you later determine that you need to pull in external JAR files, then you will use the "Wrapped Jar" section to add them in. -- Note, you will also need to come back to this section if you update the platform. You may need to add a new dependency for the version of the Autopsy-core that comes with the updated platform. -- Autopsy requires that all modules restart Autopsy after they are installed. Configure your module this way under Build -> Packaging. Check the box that says Needs Restart on Install. - + You now have a NetBeans module that is using Autopsy as its build platform. That means you will have access to all of the services and utilities that Autopsy provides. @@ -76,7 +79,7 @@ For general NetBeans module information, refer to