When we created TinyCalculator, NetBeans generated some config files. Depending on the application, these files or some others are used by Java EE to configure its behavior. This chapter provides an overview of these configuration files.
pom.xml
POM stands for Project Object Model. This file is related to Maven, which is, as mentioned before, beyond this book’s scope. I can only explain the most important content to convey information about libraries used in the projects. This will enable you to include these libraries in the build tool of your choice.
Thus, I’ll ...