user496949
user496949

Reputation: 86165

what the purpose of maven site plugin

Does it generate javadoc site or to do with Servlet etc?

Upvotes: 0

Views: 441

Answers (2)

bmargulies
bmargulies

Reputation: 100161

See, for example:

http://maven.apache.org/plugins/maven-site-plugin/

All that content is generated with the ...

maven site plugin.

Upvotes: 1

Steven
Steven

Reputation: 3894

to produce reports and project info that can be published. all sorts of plugins can be hooked in to the site plugin through <reporting>(like the source code you mentioned)

Upvotes: 1

Related Questions