标签: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
标签:apache pat aliyun strong tail coding 多个 temp http
原文地址:https://www.cnblogs.com/jhxxb/p/11416576.html