标签:plugin tar maven org compile pac config pom source
maven - 配置指定1.8 jdk
pom.xml文件中添加以下属性指定:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>
标签:plugin tar maven org compile pac config pom source
原文地址:https://www.cnblogs.com/timfruit/p/11781004.html