那些在 Maven pom.xml 中做什么
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
配置编译器合规级别。 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.