美文网首页
maven打包报错rg.apache.maven.plugins

maven打包报错rg.apache.maven.plugins

作者: simians | 来源:发表于2019-09-19 07:34 被阅读0次

maven打包报错rg.apache.maven.plugins:maven-surefire-plugin:2.22.1:test (default-test) on project user: There are test failures.
添加下面插件即可

<plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-surefire-plugin</artifactId>  
        <version>2.22.1</version>  
        <configuration>  
          <skipTests>true</skipTests>  
        </configuration>  
</plugin>

相关文章

网友评论

      本文标题:maven打包报错rg.apache.maven.plugins

      本文链接:https://www.haomeiwen.com/subject/oyoydctx.html