Spring-Maven
Spring-Maven
This is the build/run options settings for a Spring-Maven project.
The project.build
described below refers to the <project> <build></build> </project>
in the pom.xml
file.
pom.xml path - The path to the
pom.xml
file. The default setting ispom.xml
in the top-level path of the project.Automatically set
pom.xml
path when container runs - If checked, automatically locate and set the pom.xml location when accessing the container. The top-levelpom.xml
is prioritised.The lower property values will be set automatically by changing the
pom.xml
path, saving thepom.xml
file, or referencing the file when the project is run. At this time, theproject.properties
set in thepom.xml
are also read and applied.
Deploy path - This is the path that
Tomcat
looks at when running the project. The [Project]>[Toggle Auto Build] feature will also compile and copy files based on this path. The path is set toproject.build.directory/project.build.finalName
in thepom.xml
.Command variable:
${java.set.deploy.path}
Source path - set to
project.build.sourceDirectory
in thepom.xml
.Command variable:
${java.set.src_path}
Build path - set to
project.build.outputDirectory
in thepom.xml
.Command variable:
${java.set.build.path}
Log file path - Set the path to the log file.
The set in of the pom.xml
are also available.
Reads the
profile.properties
whereproject.profiles.profile.activation.activeByDefault
is set to true.If the variable names are the same as those in the existing
project.properties
, the values set inproject.profiles
will take precedence.
Last updated