Coverage Report - org.apache.maven.execution.MavenExecutionRequest
 
Classes in this File Line Coverage Branch Coverage Complexity
MavenExecutionRequest
N/A
N/A
1
 
 1  
 package org.apache.maven.execution;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *  http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import org.apache.maven.artifact.repository.ArtifactRepository;
 23  
 import org.apache.maven.monitor.event.EventDispatcher;
 24  
 import org.apache.maven.monitor.event.EventMonitor;
 25  
 import org.apache.maven.profiles.ProfileManager;
 26  
 import org.apache.maven.settings.Settings;
 27  
 
 28  
 import java.util.Date;
 29  
 import java.util.List;
 30  
 import java.util.Properties;
 31  
 
 32  
 /**
 33  
  * @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
 34  
  * @version $Id: MavenExecutionRequest.java 688884 2008-08-25 21:11:19Z jdcasey $
 35  
  */
 36  
 public interface MavenExecutionRequest
 37  
 {
 38  
     ArtifactRepository getLocalRepository();
 39  
 
 40  
     List getGoals();
 41  
 
 42  
     void setSession( MavenSession session );
 43  
 
 44  
     MavenSession getSession();
 45  
 
 46  
     void addEventMonitor( EventMonitor monitor );
 47  
 
 48  
     EventDispatcher getEventDispatcher();
 49  
 
 50  
     Settings getSettings();
 51  
 
 52  
     String getBaseDirectory();
 53  
 
 54  
     void setRecursive( boolean recursive );
 55  
 
 56  
     boolean isRecursive();
 57  
 
 58  
     void setReactorActive( boolean reactorActive );
 59  
 
 60  
     boolean isReactorActive();
 61  
 
 62  
     void setPomFile( String pomFile );
 63  
 
 64  
     String getPomFile();
 65  
 
 66  
     void setFailureBehavior( String failureBehavior );
 67  
 
 68  
     String getFailureBehavior();
 69  
 
 70  
     ProfileManager getGlobalProfileManager();
 71  
 
 72  
     Properties getExecutionProperties();
 73  
 
 74  
     Properties getUserProperties();
 75  
 
 76  
     Date getStartTime();
 77  
 
 78  
     boolean isShowErrors();
 79  
 }