maven常见错误总结

maven 启动忽略test目录: src/test/java下的类

两种方式解决: 1.命令

 mvn install -Dmaven.test.skip=true

2.pom.xml 文件

<!--  skip test -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>

猜你喜欢

转载自my.oschina.net/u/3691499/blog/1595108