Maven学习(一)

    学习一门技术和工具总得花费一段时间,5月底6月初自己学习了一些工具,maven+Hudson+nexus的搭建,对于maven以前只是听说,顺便再自己的电脑上搭建了一个maven环境,但是完全不了解maven这一强大的构建工具,还有ant也是一个构建工具,但ant就没有maven那么的简单方便,其实简单点说maven是一个运用命令行就能完成构建,测试,打包,发布一系列功能。其中Maven最重要的是pom文件,在pom文件里配置好依赖就可以进行构建。

Maven是声明式的,Maven约定优于配置。还有Maven重要的中央仓库私服。以下是重要的Maven私服的配置代码,记录下方便以后查看。

在pom文件中配置


   
	nexus
	mynexus
	http://192.168.0.153:8081/nexus/content/groups/public/
    


     
	nexus
	mynexus
	http://192.168.0.153:8081/nexus/content/groups/public/
     

    
        
      nexus-releases    
      http://192.168.0.153:8081/nexus/content/repositories/releases/    
    
       
     nexus-snapshots    
     http://192.168.0.153:8081/nexus/content/repositories/snapshots/    
    
     

   在settings文件里的配置 

     
      nexus    
          
           
        nexus
        mynexus
       http://192.168.0.153:8081/nexus/content/repositories/central/      
     
          true    
                  
                    
                    true    
                    
                
               
             
                
              nexus
                 mynexus
      http://192.168.0.153:8081/nexus/content/repositories/central/       
          
            true    
                  
                  
                true    
                  
                
            
    

  在settings文件里的配置 


    nexus
    mynexus
    http://192.168.0.153:8081/nexus/content/groups/public/
    *

  其中要注意的是pom里的和settings里的要保持一致

 

你可能感兴趣的:(maven)