那些在 Maven pom.xml 中做什么

发布于 2024-10-20 13:19:16 字数 591 浏览 1 评论 0原文

pom.xml 中的以下内容有何作用?

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

What does the following do in pom.xml?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天冷不及心凉 2024-10-27 13:19:16

配置编译器合规级别。 Source 1.6 意味着您的源代码必须符合 java 1.6,target 意味着生成的字节码应该与 1.6 兼容的 JVM 兼容。

Configures the compiler compliance level. Source 1.6 means your source code must be according to java 1.6, and target means the generated bytecode should be compatible with a 1.6 compliant JVM.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文