maven copy file文件到指定目录

刚接触一个项目,里面有一个配置文件,我以为是手动添加的,项目经理说是自动产生,然后我就研究怎么产生的。。。。。

后来发现是从项目某个文件copy到本地的


	
		
		mobile.test.build
		
			
				
				
					org.apache.maven.plugins
					maven-antrun-plugin
					
						
							mvn-antrun-process-resources
							process-resources
							
								run
							
						
					
					
						
							
							
							
							
							Using device: "${sap.ui5.devicename}" for testing.
							
							
								
						 
					
				
							 
			
		

是从项目的src/test/settings文件夹下,拷贝一个properties文件到C:/Users/Automation/Test-Parameters,并重命名为Envrionment.properties.

刚开始运行 mvn build 或者 mvn install都不能生成文件。后来才发现这是 maven build 的时间和antrun 插件运行时间之间的问题。

Maven build 在 maven-antrun-plugin 运行之前就执行了,所以antrun没有起作用。

运行命令:mvn -Pmobile.test.build clean install 就OK啦。



你可能感兴趣的:(maven copy file文件到指定目录)