Maybe mvn clean package
is one of the easiest operation in java programing. Howerver, I recently encountered a problem of packaging, which took up some of my time.
This was the initial package config in maven pom:
1 2 3 4 5 6 |
<resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> |
And this is the path of the file I wanted to package and read:
1 |
src/main/resources/template/xxx.xml |
Executing the package command (mvn clean package
) and opening the jar with compression software (e.g. WinRAR), the file was expected to locate at BOOT-INFO/class/template
. However I could not find it. Though all files in resources folder directly existed, the others in subdirectories was not there. Continue reading