eclipse執行maven install命令時跳過test

在pom.xml裏面配置一下代碼,將跳過test。apache

<plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skip>true</skip>
        </configuration>
      </plugin>
</plugins>
相關文章
相關標籤/搜索