简体   繁体   中英

Maven doesn't find dependency

I added a dependency in maven for servlet as seen here , here and here

Maven doesn't find it :

dependency javax.servlet:javax.servlet-api:3.0.1 not found

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.1.0</version>
    <scope>provided</scope>
</dependency>

I tried to add this, which doesn't work :

<repository>
    <id>maven2</id>
    <url>https://mvnrepository.com</url>
</repository>

or this:

<repository>
    <id>maven2</id>
    <url>http://repo1.maven.org/maven2/javax/servlet/javax.servlet-api/3.0.1/</url>
</repository>

Use default repostiory:

  <repositories>
    <repository>
      <id>central</id>
      <name>Central Repository</name>
      <url>http://repo.maven.apache.org/maven2</url>
      <layout>default</layout>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>

Don't do like this: http://repo1.maven.org/maven2 /javax/servlet/javax.servlet-api/3.0.1/

Even you should remove all content of the tag <repositories> or <repository> and all things inside these, Maven will automatic use default configuration.


Reference: http://maven.apache.org/pom.html#The_Super_POM

First of all you need to verify if you have Internet connectivity and then you can try to purge and resolve the dependencies in the local Maven repository as there could be some corrupted package, you can try the following command to accomplish this:

mvn dependency:purge-local-repository

Take a look to Purging local repository dependencies for more information.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM