美文网首页
随笔-2018-01-02

随笔-2018-01-02

作者: 又是什么鬼咯 | 来源:发表于2018-01-02 17:01 被阅读0次

    关于maven打包的时候如何引入本地jar包

    setup1:

    <dependency>

    <groupId>top.legend</groupId>

    <artifactId> demo  </artifactId>

    <version> 1.0.0 </version>

    <scope>system</scope>

    <systemPath>${basedir}/lib/xxx.jar</systemPath>

    </dependency>

    setup2:

    <configuration>

    <includeSystemScope>true</includeSystemScope>

    </configuration>

    相关文章

      网友评论

          本文标题:随笔-2018-01-02

          本文链接:https://www.haomeiwen.com/subject/cgkqnxtx.html