MVN 命令集

Meven 编译时不执行 测试类
命令行:
  mvn clean deploy -Dmaven.test.skip=true
  mvn clean install -Dmaven.test.skip=true
配置文件:
 <build>
  <plugins>
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
     <skip>true</skip>
    </configuration>
   </plugin>
  </plugins>
 </build>

你可能感兴趣的:(apache,maven)