想要测试得到视频中的报告效果的童鞋可能需要在pom.xml中加入下面配置:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</build>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</build>
2016-12-18
感觉作者是在炫,很不是在授课,我个人觉得,如果添加maven 依赖的时候,告诉学者去哪里搜索,编辑java文件的时候用集成开发工具,这样我觉得更实在一些。
2016-12-17
我来回答一下:C:\Users>mvn -v
'mvn' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
因为之前Path路径中配置的有其他路径,
我的解决方法是在用户中新建path,然后以管理员权限命令行,就可以正常显示了,以用户权限命令行会闪退
'mvn' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
因为之前Path路径中配置的有其他路径,
我的解决方法是在用户中新建path,然后以管理员权限命令行,就可以正常显示了,以用户权限命令行会闪退
2016-12-15
Failure to transfer org.apache.maven:maven-core:pom:2.0.6 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced.
2016-12-12
<executions>
<execution>
<!-- 在打包成功后使用jetty:run来运行 -->
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<execution>
<!-- 在打包成功后使用jetty:run来运行 -->
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
2016-12-11
MyEclipse10傻瓜式创建Maven工程,从下载maven到输出helloWorld工程,只需要半个小时。还不出错。http://www.imooc.com/article/15037
2016-12-10