The POM for project is missing, no dependency information available

后端 未结 2 1177
無奈伤痛
無奈伤痛 2021-01-31 14:23

Background

Trying to add a Java library to the local Maven repository using a clean install of Apache Maven 3.1.0, with Java 1.7. Here is how the Java archive file was

2条回答
  •  渐次进展
    2021-01-31 14:47

    Change:

    
    
      net.sourceforge
      ant4x
      ${net.sourceforge.ant4x-version}
      provided
    
    

    To:

    
    
      net.sourceforge.ant4x
      ant4x
      ${net.sourceforge.ant4x-version}
      provided
    
    

    The groupId of net.sourceforge was incorrect. The correct value is net.sourceforge.ant4x.

提交回复
热议问题