mirror of https://github.com/apache/maven.git
Moved the PomInterpolatorTag and Interpolator classes to package scope.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@769859 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
10317e7c7c
commit
16fc5b6fd3
|
@ -38,12 +38,9 @@ import org.apache.maven.model.Build;
|
|||
import org.apache.maven.model.DomainModel;
|
||||
import org.apache.maven.model.Model;
|
||||
import org.apache.maven.model.ModelEventListener;
|
||||
import org.apache.maven.model.DomainModel;
|
||||
import org.apache.maven.model.ProcessorContext;
|
||||
import org.apache.maven.model.Profile;
|
||||
import org.apache.maven.model.interpolator.Interpolator;
|
||||
import org.apache.maven.model.interpolator.InterpolatorProperty;
|
||||
import org.apache.maven.model.interpolator.PomInterpolatorTag;
|
||||
import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
|
||||
import org.apache.maven.profiles.DefaultProfileManager;
|
||||
import org.apache.maven.profiles.ProfileActivationException;
|
||||
|
|
|
@ -24,7 +24,7 @@ import java.util.*;
|
|||
/**
|
||||
* Provides interpolator property information.
|
||||
*/
|
||||
public final class InterpolatorProperty
|
||||
final class InterpolatorProperty
|
||||
{
|
||||
/**
|
||||
* The key (or name) of the property
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.apache.maven.model.interpolator;
|
||||
|
||||
public enum PomInterpolatorTag
|
||||
enum PomInterpolatorTag
|
||||
{
|
||||
PROJECT_PROPERTIES,
|
||||
|
||||
|
|
|
@ -22,7 +22,6 @@ package org.apache.maven.profiles;
|
|||
import org.apache.maven.model.Activation;
|
||||
import org.apache.maven.model.Model;
|
||||
import org.apache.maven.model.Profile;
|
||||
import org.apache.maven.model.interpolator.InterpolatorProperty;
|
||||
import org.apache.maven.model.interpolator.PomInterpolatorTag;
|
||||
import org.apache.maven.profiles.ProfileActivationContext;
|
||||
import org.apache.maven.profiles.ProfileActivationException;
|
||||
|
|
Loading…
Reference in New Issue