eclipse中的maven治理之插件的配置(六)

eclipse中的maven管理之插件的配置(六)parent中的pombuildpluginsplugingroupIdorg.apache.maven.

eclipse中的maven管理之插件的配置(六)


parent中的pom

    <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>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-surefire-plugin</artifactId>                <configuration>                    <skip>true</skip>                    <testFailureIgnore>true</testFailureIgnore>                </configuration>            </plugin>        </plugins>        <defaultGoal>package</defaultGoal>    </build>