1 package org.apache.maven.project.inheritance; 2 3 18 19 import org.apache.maven.model.Model; 20 21 25 public interface ModelInheritanceAssembler 26 { 27 String ROLE = ModelInheritanceAssembler.class.getName(); 28 29 void assembleModelInheritance( Model child, Model parent, String childPathAdjustment ); 30 31 void assembleModelInheritance( Model child, Model parent ); 32 33 void copyModel( Model dest, Model source ); 34 } 35 | Popular Tags |