mirror of https://github.com/apache/maven.git
o added project.build.output which takes a default value of
target/classes and is the location for compiled application classes o added project.build.testOutput which takes a default value of target/test-classes and is the location for compiled test classes After chatting with Michal we decided that we want a single place where we can control these values and provide a single place for a user to override them if they wish to. The build directory, the directory where compiled app classes go, and the directory where compiled test classes go can now all be accessed in a consistent fashion. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162756 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
117940de08
commit
944b65451b
|
@ -505,6 +505,22 @@
|
|||
</description>
|
||||
<type>String</type>
|
||||
</field>
|
||||
<field>
|
||||
<name>output</name>
|
||||
<version>4.0.0</version>
|
||||
<description>
|
||||
The directory where compiled application classes are placed.
|
||||
</description>
|
||||
<type>String</type>
|
||||
</field>
|
||||
<field>
|
||||
<name>testOutput</name>
|
||||
<version>4.0.0</version>
|
||||
<description>
|
||||
The directory where compiled test classes are placed.
|
||||
</description>
|
||||
<type>String</type>
|
||||
</field>
|
||||
</fields>
|
||||
</class>
|
||||
<class>
|
||||
|
|
Loading…
Reference in New Issue