maven使用

1.下载解压maven

2.配置全局路劲

MAVEN_HOME => D:\sxwang\app\apache-maven-3.8.1
PATH=%MAVEN_HOME%\bin

3.修改maven设置(cnf.settings)

修改默认maven仓库

 
D:/ameng/maven_repo

添加下载点


    
    
      maven-default-http-blocker
      external:http:*
      Pseudo repository to mirror external repositories initially using HTTP.
      http://0.0.0.0/
      true
    


            
             nexus-aliyun
             central
             Nexus aliyun
             http://maven.aliyun.com/nexus/content/groups/public
        
        
             cloudera
             central
             cloudera
             https://repository.cloudera.com/artifactory/cloudera-repos/
        

    
    aliyunmaven
    *
    阿里云公共仓库
    https://maven.aliyun.com/repository/public
    


  

4.通过maven管理jar包

在maven项目的pom.xml中添加第三方jar包
第三方jar包网址:https://mvnrepository.com/
搜索到需要的jar包后,把 放入

image.png


    
      junit
      junit
      4.11
      test
    
    
    
      mysql
      mysql-connector-java
      8.0.23
    

  

5.maven的其他好处

可以直接查看jar包的源码
可以打包

你可能感兴趣的:(maven使用)