maven配置多环境分别打包发布

maven命令-P 参数

配置assembly.xml

pom.xml配置如下


.................
     
        
        .................
	
	    org.apache.maven.plugins
	    maven-assembly-plugin
	    2.2.1
	    
	        
		    src/main/assembly.xml				
                
	    
	    
		
	            make-assembly
	       	    package
		    
		        single
		    
	        
	    
        
	....................
	

assembly.xml配置


	bin
	
		dir
	
	
	
	
		
			true
			/A/lib
		
		
		
			true
			/production/lib
		
		
	
	
		
		
			/A
			
				README.txt
			
		
		
			
			bin
			/A/bin
		
		
			
			config/A
			/A/config
			
				dc.properties
				keystore
			
		
		
			
			lib
			/A/lib
			
				*.txt
			
		

		
		
			/production
			
				README.txt
			
		
		
			bin
			/production/bin
		
		
			config/production
			/production/config
			
				dc.properties
				logback.xml
			
		
		
		
			lib
			/production/lib
			
				*.txt
			
		
	



你可能感兴趣的:(maven)