Issue
I am new to java and working in a project managed by maven. This is a basic question so I'm sorry, but I like to become familiar with all the terminology. When I google the question it is answered by stating that maven creates a site. What kind of site? What specifically is meant by that?
Solution
It simply means that Maven can generate a website for your project and release it to the public based on the pom.xml
's configuration. Internally, it uses Maven Site Plugin to do it.
A real life example is the JUnit4 web site. Given this pom.xml, it will then generate this web site.
Answered By - Ken Chan
Answer Checked By - Terry (JavaFixing Volunteer)