IDEA创建maven项目使用命令打包不能跳过test的解决办法

mvn compile 没有问题,mvn package的时候不能跳过test导致打包出错解决办法2个:
一是命令行,
mvn clean package -Dmaven.test.skip=true

二是写入pom文件,

<plugin>  
        <groupId>org.apache.maven.pluginsgroupId>  
        <artifactId>maven-surefire-pluginartifactId>  
        <version>2.4.2version>  
        <configuration>  
          <skipTests>trueskipTests>  
        configuration>  
plugin>  

你可能感兴趣的:(idea)