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

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -