Dependencies 那个 io.Appium 显示红色

很明显就是没下载 jar 包导致的
在左侧的 Externel Library 里看到没有那个 jar 包
下面是 pom.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.pingan.FPM</groupId>
    <artifactId>Appium</artifactId>
    <version>1.4.13</version>
    <dependencies>
        <dependency>
            <groupId>io.Appium</groupId>
            <artifactId>java-client</artifactId>
            <version>3.2.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
    </dependencies>


</project>```



试了1、添加maven镜像地址
       2、切换版本
       3、重新导入
都不能解决问题
本人新手,求各位指点


↙↙↙阅读原文可查看相关链接,并与作者交流