maven的编译插件

maven的编译插件
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
                <encoding>utf-8</encoding>
            </configuration>
        </plugin>
        <!--other plugin-->
    </plugins>
</build>

猜你喜欢

转载自blog.csdn.net/maqingbin8888/article/details/81559240