• Exception——maven编译项目时无法编译本地第三方jar包


    aven编译插件提供支持
    
    在pom中加入以下代码可以实现src/main/webapp/WEB-INF/lib目录下的第三方本地jar包的编译
    
    <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <version>3.7.0</version>
              <configuration>
                <compilerArguments>
                  <extdirs>src/main/webapp/WEB-INF/lib</extdirs>
                </compilerArguments>
              </configuration>
    </plugin>
     
  • 相关阅读:
    Alpha、Beta、RC、GA版本的区别
    convertView
    Layouts
    Styles and Themes
    Android Studio
    Promise.race
    Base64
    NodeJS搭建HTTPS服务器
    CoreSeek
    Ping of Death
  • 原文地址:https://www.cnblogs.com/roak/p/14523356.html
Copyright © 2020-2023  润新知