Maven:一些常见问题

1、ReasonPhrase: Forbidden

a.注意用户的权限以及角色role的设置,一般是没有权限才会被禁止的。

2、Failed to collect dependencies

a.需要把parent工程,也就是package是pom的那个工程先install一下,或者deploy

b.需要注意在设置的工厂里面是否可以访问,如果直接访问public分组,那么就要检查public分组是否添加了自己设置的工厂

3、child module ….pom.xml does not exist

a.注意module的名称是否正确,有时候命名问题会导致找不到项目的

b.注意一开始项目命名的规则问题注意一开始项目命名的规则问题

4、Cannot detect Web Project version. Please specify version of Web Project through configuration property of war plugin. E.g.: maven-war-plugin 3.0  

    maven-war-plugin
    
        3.0
    
5、Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project marer-test-weixin: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode)

    maven-war-plugin
    
        3.0
        WebRoot\WEB-INF\web.xml 
    

你可能感兴趣的:(Java,maven,java)