码迷,mamicode.com
首页 > 编程语言 > 详细

Maven-导入本地 Jar 包

时间:2019-08-27 10:28:55      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:apache   pat   aliyun   strong   tail   coding   多个   temp   http   

一个 Jar 包

<dependency>
    <groupId>local</groupId>
    <artifactId>aliyun-java-sdk-core</artifactId>
    <version>3.3.1</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/aliyun-java-sdk-core-3.3.1.jar</systemPath>
</dependency>

多个 Jar 包,配置 maven-compiler-plugin 插件

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
        <encoding>UTF-8</encoding>
        <compilerArgs>
            <arg>-extdirs</arg>
            <arg>${project.basedir}/src/main/webapp/WEB-INF/lib</arg>
        </compilerArgs>
    </configuration>
</plugin>

 


https://maven.apache.org/plugins/maven-compiler-plugin/examples/pass-compiler-arguments.html

https://blog.csdn.net/catoop/article/details/48489365

Maven-导入本地 Jar 包

标签:apache   pat   aliyun   strong   tail   coding   多个   temp   http   

原文地址:https://www.cnblogs.com/jhxxb/p/11416576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!