springboot以jar包启动显示外部引入jar包缺失

<!-- xxl-job-core -->
        <dependency>
            <groupId>xxl-job-core</groupId>
            <artifactId>xxl-job-core</artifactId>
            <version>2.4.1</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/src/main/resources/lib/xxl-job-core-2.4.1-SNAPSHOT.jar</systemPath>
        </dependency>

  <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                </configuration>
            </plugin>
        </plugins>
    </build>