corrected typos in the comments

This commit is contained in:
Luigi Cortese 2015-11-13 22:35:30 +01:00
parent 043a610754
commit bf65168776

View File

@ -26,20 +26,20 @@
<!-- <!--
log4j.xml file will be copied both in ${project.build.outputDirectory} log4j.xml file will be copied both in ${project.build.outputDirectory}
and ${project.build.outputDirectory}. Thanks to Sean Patrick Floyd and ${project.build.directory}. Thanks to Sean Patrick Floyd
(http://stackoverflow.com/questions/5637532/maven-how-to-place-resource-file-together-with-jar) (http://stackoverflow.com/questions/5637532/maven-how-to-place-resource-file-together-with-jar)
--> -->
<resources> <resources>
<resource> <!-- regular resource processing for everything except logback.xml --> <resource> <!-- regular processing for every resource file -->
<directory>src/main/resources</directory> <directory>src/main/resources</directory>
</resource> </resource>
<resource> <!-- resource processing with a different output directory for log4j.xml --> <resource> <!-- processing with a different output directory for log4j.xml -->
<directory>src/main/resources</directory> <directory>src/main/resources</directory>
<includes> <includes>
<include>log4j.xml</include> <include>log4j.xml</include>
</includes> </includes>
<targetPath>..</targetPath> <!-- relative to target/classes i.e. ${project.build.outputDirectory} --> <targetPath>..</targetPath> <!-- relative to target/classes i.e. ${project.build.directory} -->
</resource> </resource>
</resources> </resources>