Maven项目中引入第三方jar包

2019-02-21  本文已影响0人  Toplhyi

IDEA下的Maven项目中引入第三方jar包:
尝试了直接在Project Structure > Libraries 下直接添加,虽然编辑器没有提示错误,相应的类也可以导入,但是编译时会报错。
最终解决:在pom.xml文件中添加依赖即可

        <dependency>
            <groupId>educationAuthentication</groupId>
            <artifactId>educationAuthentication</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>D:/lib/educationAuthentication.jar</systemPath>
        </dependency>
上一篇下一篇

猜你喜欢

热点阅读