0
我進入了一些場景,即讀取屬性文件,並根據屬性文件的值創建文件夾,並將資源從某個目錄複製到它。Maven:讀取屬性文件和複製資源
properties-file: xyz.properties
CLIENTLIST=A,B
我想在maven中執行以下步驟。
1. From above properties file pom should read the property.
2. In loop I want to create folders by name A and B.
3. After creating folder i want to copy some resources into it.
ex: after creating folder A , want to copy some resource files from x/y/z directory.
在maven中可能嗎?