Maven Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 10: Line 10:


=Profile=
=Profile=
A ''profile'' is an alternative set of configurations which set or override default values. Profiles allow to customize a build for different environments. Profiles are configured in the <tt>pom.xml</tt> and each profile is identified with an identifier. Profiles customizes the build for different environments (e.g. production or development, different operating systems, different JDK versions, etc.)


=Multi-Module Maven Projects=
=Multi-Module Maven Projects=


* [[Multi-Module Maven Projects]]
* [[Multi-Module Maven Projects]]

Revision as of 01:15, 30 May 2016

Internal

POM

pom.xml

Profile

A profile is an alternative set of configurations which set or override default values. Profiles allow to customize a build for different environments. Profiles are configured in the pom.xml and each profile is identified with an identifier. Profiles customizes the build for different environments (e.g. production or development, different operating systems, different JDK versions, etc.)

Multi-Module Maven Projects