Maven工程创建后无法引入Junit依赖

我的jdk试1.8版本的,我的Maven是2019年的,我的idea是昨天刚下载的

img

当我加上下面这段代码后 ,就会提示报错

    <dependencies>
        <!--英语解释:依赖,专业解释:坐标-->
        <!--  E:/repository/mvn/junit/junit/junit-3.8.1.jar -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1<version>
            <scope>test</scope>
        </dependency>
    </dependencies>

img

下面这个是我自己设置的我的资源库的位置,也有一个Junit的包,当时自己下载的那个Junit的包也不行,后来我朋友给我发了一个,仍然不行,还是搜索不到这个文件,其他的地方暂时还没有发现问题

img

使用下面的

<dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
</dependency>