jvanzyl     2003/12/26 21:04:21

  Modified:    maven-model/src/java/org/apache/maven/model Dependency.java
  Log:
  o add getProperty(key), required in by PluginManager for classloader checking
    and by various plugins to control their behaviour.
  
  Revision  Changes    Path
  1.7       +6 -2      
maven-components/maven-model/src/java/org/apache/maven/model/Dependency.java
  
  Index: Dependency.java
  ===================================================================
  RCS file: 
/home/cvs/maven-components/maven-model/src/java/org/apache/maven/model/Dependency.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Dependency.java   4 Dec 2003 00:33:48 -0000       1.6
  +++ Dependency.java   27 Dec 2003 05:04:20 -0000      1.7
  @@ -92,7 +92,6 @@
       /** Properties of this dependency */
       private Map properties;
   
  -
       /**
        * Default constructor
        */
  @@ -317,6 +316,11 @@
           }
   
           return properties;
  +    }
  +
  +    public String getProperty( String key )
  +    {
  +        return (String) properties.get( key );
       }
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to