0
点赞
收藏
分享

微信扫一扫

maven 指定java编译环境

Soy丶sauce 2023-04-12 阅读 76

<plugin>  
 
             <groupId>org.apache.maven.plugins</groupId>  
 
             <artifactId>maven-compiler-plugin</artifactId>  
 
             <configuration>  
 
                 <source>1.7</source>  
 
                 <target>1.7</target>  
 
             </configuration>  
 
         </plugin>

举报

相关推荐

0 条评论