Maven creates project exception

错误信息:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositori

 

 

Reason: The local library does not have maven-archetype-quickstart-1.1.jar or maven-archetype-webapp-1.0.jar 

 

Solution

1. The last jar address of the jar package command of the install object, mvn install:install-file -DgroupId=org.apache.maven.archetypes -DartifactId=maven-archetype-quickstart -Dversion=1.1 -Dpackaging=jar -Dfile=D:\ maven-archetype-quickstart-1.1.jar 

2. If the install is abnormal, set a new image in settings.xml and install it again

 <mirror>
        <id>repo2</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://repo2.maven.org/maven2/</url>
    </mirror>

    <mirror>
        <id>ui</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://uk.maven.org/maven2/</url>
    </mirror>

    <mirror>
        <id>jboss-public-repository-group</id>
        <mirrorOf>central</mirrorOf>
        <name>JBoss Public Repository Group</name>
        <url>http://repository.jboss.org/nexus/content/groups/public</url>
    </mirror>

 

 

 

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326060988&siteId=291194637