-
- All Known Implementing Classes:
BuildOutputDirectory
public interface BuildDirectory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilegetChild(String path)Convenience method for obtaining an file/folder in the build output directory.FilegetLocation()Returns the location of the build output directory.FilegetOutputDirectory()FilegetP2AgentDirectory()FilegetTestOutputDirectory()
-
-
-
Method Detail
-
getLocation
File getLocation()
Returns the location of the build output directory.- Returns:
- never
null
-
getChild
File getChild(String path)
Convenience method for obtaining an file/folder in the build output directory.- Returns:
- The file or folder at the given
pathrelative to the build output directory.
-
getOutputDirectory
File getOutputDirectory()
- Returns:
- the directory where compiled application classes are placed.
-
getTestOutputDirectory
File getTestOutputDirectory()
- Returns:
- the directory where compiled test classes are placed.
-
getP2AgentDirectory
File getP2AgentDirectory()
- Returns:
- the directory used for the P2 agent
-
-