org.apache.maven.model
Class Build

java.lang.Object
  extended by org.apache.maven.model.PluginContainer
      extended by org.apache.maven.model.PluginConfiguration
          extended by org.apache.maven.model.BuildBase
              extended by org.apache.maven.model.Build
All Implemented Interfaces:
Serializable

public class Build
extends BuildBase
implements Serializable

The <build> element contains informations required to build the project.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Constructor Summary
Build()
           
 
Method Summary
 void addExtension(Extension extension)
          Method addExtension.
 List getExtensions()
          Method getExtensions.
 String getModelEncoding()
           
 String getOutputDirectory()
          Get the directory where compiled application classes are placed.
 String getScriptSourceDirectory()
          Get this element specifies a directory containing the script sources of the project.
 String getSourceDirectory()
          Get this element specifies a directory containing the source of the project.
 String getTestOutputDirectory()
          Get the directory where compiled test classes are placed.
 String getTestSourceDirectory()
          Get this element specifies a directory containing the unit test source of the project.
 void removeExtension(Extension extension)
          Method removeExtension.
 void setExtensions(List extensions)
          Set a set of build extensions to use from this project.
 void setModelEncoding(String modelEncoding)
          Set an encoding used for reading/writing the model.
 void setOutputDirectory(String outputDirectory)
          Set the directory where compiled application classes are placed.
 void setScriptSourceDirectory(String scriptSourceDirectory)
          Set this element specifies a directory containing the script sources of the project.
 void setSourceDirectory(String sourceDirectory)
          Set this element specifies a directory containing the source of the project.
 void setTestOutputDirectory(String testOutputDirectory)
          Set the directory where compiled test classes are placed.
 void setTestSourceDirectory(String testSourceDirectory)
          Set this element specifies a directory containing the unit test source of the project.
 
Methods inherited from class org.apache.maven.model.BuildBase
addFilter, addResource, addTestResource, getDefaultGoal, getDirectory, getFilters, getFinalName, getResources, getTestResources, removeFilter, removeResource, removeTestResource, setDefaultGoal, setDirectory, setFilters, setFinalName, setResources, setTestResources
 
Methods inherited from class org.apache.maven.model.PluginConfiguration
getPluginManagement, setPluginManagement
 
Methods inherited from class org.apache.maven.model.PluginContainer
addPlugin, flushPluginMap, getPlugins, getPluginsAsMap, removePlugin, setPlugins
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Build

public Build()
Method Detail

addExtension

public void addExtension(Extension extension)
Method addExtension.

Parameters:
extension -

getExtensions

public List getExtensions()
Method getExtensions.

Returns:
java.util.List

getOutputDirectory

public String getOutputDirectory()
Get the directory where compiled application classes are placed.

Returns:
String

getScriptSourceDirectory

public String getScriptSourceDirectory()
Get this element specifies a directory containing the script sources of the project. This directory is meant to be different from the sourceDirectory, in that its contents will be copied to the output directory in most cases (since scripts are interpreted rather than compiled).

Returns:
String

getSourceDirectory

public String getSourceDirectory()
Get this element specifies a directory containing the source of the project. The generated build system will compile the source in this directory when the project is built. The path given is relative to the project descriptor.

Returns:
String

getTestOutputDirectory

public String getTestOutputDirectory()
Get the directory where compiled test classes are placed.

Returns:
String

getTestSourceDirectory

public String getTestSourceDirectory()
Get this element specifies a directory containing the unit test source of the project. The generated build system will compile these directories when the project is being tested. The path given is relative to the project descriptor.

Returns:
String

removeExtension

public void removeExtension(Extension extension)
Method removeExtension.

Parameters:
extension -

setExtensions

public void setExtensions(List extensions)
Set a set of build extensions to use from this project.

Parameters:
extensions -

setOutputDirectory

public void setOutputDirectory(String outputDirectory)
Set the directory where compiled application classes are placed.

Parameters:
outputDirectory -

setScriptSourceDirectory

public void setScriptSourceDirectory(String scriptSourceDirectory)
Set this element specifies a directory containing the script sources of the project. This directory is meant to be different from the sourceDirectory, in that its contents will be copied to the output directory in most cases (since scripts are interpreted rather than compiled).

Parameters:
scriptSourceDirectory -

setSourceDirectory

public void setSourceDirectory(String sourceDirectory)
Set this element specifies a directory containing the source of the project. The generated build system will compile the source in this directory when the project is built. The path given is relative to the project descriptor.

Parameters:
sourceDirectory -

setTestOutputDirectory

public void setTestOutputDirectory(String testOutputDirectory)
Set the directory where compiled test classes are placed.

Parameters:
testOutputDirectory -

setTestSourceDirectory

public void setTestSourceDirectory(String testSourceDirectory)
Set this element specifies a directory containing the unit test source of the project. The generated build system will compile these directories when the project is being tested. The path given is relative to the project descriptor.

Parameters:
testSourceDirectory -

setModelEncoding

public void setModelEncoding(String modelEncoding)
Set an encoding used for reading/writing the model.

Overrides:
setModelEncoding in class BuildBase
Parameters:
modelEncoding - the encoding used when reading/writing the model.

getModelEncoding

public String getModelEncoding()
Overrides:
getModelEncoding in class BuildBase
Returns:
the current encoding used when reading/writing this model.


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.