is there a placeholder for src/main/webapp/WEB-INF directory in Maven -
is there predefined placeholder src/main/webapp/web-inf directory in maven can referred ${xyz} ?
if not, there way define such placeholder?
there isn't need predefined variables tied particular type of project module , packaging standard, $basedir
have access module folder want. ${basedir}/src/main/webapp/web-inf
.
and maven allows define own properties.
<project> <properties> <webinf.basedir>${basedir}/src/main/webapp/web-inf</webinf.basedir> </properties> ... </project>
then have access path ${webinf.basedir}
. use whatever property name of course.
Comments
Post a Comment