使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程

目录

1.下载maven文件

2.设置setting.xml文件

3.创建maven项目

4.让idea使用我们自已的maven

5.配置pom.xml文件

首先清楚的是要想在IDEA 中创建maven项目就要将你自已的IDEA软件和maven依赖包关联起来,这样才能在pom.xml中添加mybatis的依赖。
1.首先在官网上下载maven文件,解压好就可以了,无需安装,之后配置setting.xml文件
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第1张图片
2.打开setting.xml文件之后添加阿里云的镜像和jboss的镜像,并配置你的本地仓库,
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第2张图片
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第3张图片

  
    alimaven 
    aliyun maven 
    https://maven.aliyun.com/nexus/content/groups/public/ 
    central 
    
	  
      jboss  
     jboss  
     https://repository.jboss.org/nexus/content/repositories/releases/  
     JBoss Releases        
     

3.更改本地仓库的位置:
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第4张图片

4.这些配置弄好之后就可以使用IDEA创建你的maven项目啦
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第5张图片
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第6张图片
这样项目就创建好啦
5.接下来配置pom.xml文件
使用IDEA创建maven项目在pom.xml中添加依赖后,出现“Dependency ‘org.mybatis:mybatis:x.x.x‘ not found“解决过程_第7张图片


        
            JBoss repository
            https://repository.jboss.org/nexus/content/repositories/releases/
        
    


    
        
            org.mybatis
            mybatis
            3.4.5
        
    

这样idea上的maven环境就搭建好了,可以开心的写代码啦:)

你可能感兴趣的:(maven)