Maven cannot find Axis2 1.6.4 or higher

As you can clearly see here , the Axis 2 Maven dependency has several versions above version 1.6.3. However, all of them do not load at creation (actually, when I edit and save my pom.xml) in Eclipse. I have a java 8 project and version 1.5.4 - 1.6.3. when i add them to my pom.xml they automatically appear in my maven dependencies. when I try any version from 1.6.4 - 1.7.3, I get the missing artifact error in my pom.xml, for example, they cannot be found in the central repository.

enter image description here

enter image description here

Eclipse Mars, Maven 3.3. , , ne? ( Preferences/Maven, , ). , "" ?

+4
1

:

( "" ) :

Missing artifact org.apache.axis2:axis2:jar:1.6.4

, Maven : groupId = org.apache.axis2, artifactId = axis2, version = 1.6.4, type = jar

... , 1.6.4 axis2 JAR, POM. , :

    <dependency>
        <groupId>org.apache.axis2</groupId>
        <artifactId>axis2</artifactId>
        <version>1.6.4</version>
        <type>pom</type>
    </dependency>

( JAR: axis2-kernel, axis2-adb ..)

: search , JAR, POM.

+7

Source: https://habr.com/ru/post/1657933/


All Articles