Idea自定义Maven骨架(archetype)

参考1

参考2

1.配置maven环境变量

2.maven的settings.xml配置



  
  C:\Users\Administrator\.m2\repository
  
  
  
    
  

  
  
    
  

  
  
    
  

  
  
    
    
        alimaven
        central
        aliyun maven
      http://maven.aliyun.com/nexus/content/repositories/central/
    
     
  
  
  
  
    
    
    

      
        
          nexus
          local private nexus
          http://maven.oschina.net/content/groups/public/
          
      true
      
          
      false
      
        
      
    
    
      nexus
          local private nexus
          http://maven.oschina.net/content/groups/public/
          
      true
      
          
      false
      
    
    
    
    

  

  

3.执行 mvn archetype:create-from-project

4. cd target\generated-sources\archetype

5.执行 mvn clean install

6.打开target\generated-sources\archetype\pom.xml

7.填入

 

 


可以在idea中进行添加 如果想删除 可以进入如下目录

C:\Users\Administrator\.IntelliJIdea2018.3\system\Maven\Indices

你可能感兴趣的:(Java)