o Added constants for well-known profile sources

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@777958 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-05-23 16:38:36 +00:00
parent ba57376e69
commit d8c4c800e7
1 changed files with 5 additions and 1 deletions

View File

@ -3028,9 +3028,13 @@
<version>4.0.0</version>
<code>
<![CDATA[
public static final String SOURCE_POM = "pom";
public static final String SOURCE_SETTINGS = "settings.xml";
// We don't want this to be parseable...it's sort of 'hidden'
// default source for this profile is in the pom itself.
private String source = "pom";
private String source = SOURCE_POM;
public void setSource( String source )
{