mvn skip test
程序员文章站
2022-06-03 16:23:36
...
find ./ -name ".svn" | xargs rm -Rf
====killed eclipse in ubuntu
jimmy@jimmy:~$ ps aux |grep eclipse
jimmy 4671 5.2 16.5 1008988 314536 ? Sl 14:00 3:04 /home/jimmy/eclipse/eclipse
jimmy 6847 0.0 0.0 5628 768 pts/0 S+ 14:59 0:00 grep --color=auto eclipse
jimmy@jimmy:~$ kill 4671
jimmy@jimmy:~$
==========Maven skip test ===========
Skipping Tests
To skip running the tests for a particular project, set the skipTests property to true.
Xml代码 收藏代码
1. <project>
2. [...]
3. <build>
4. <plugins>
5. <plugin>
6. <groupId>org.apache.maven.plugins</groupId>
7. <artifactId>maven-surefire-plugin</artifactId>
8. <version>2.4.2</version>
9. <configuration>
10. <skipTests>true</skipTests>
11. </configuration>
12. </plugin>
13. </plugins>
14. </build>
15. [...]
16. </project>
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>
You can also skip the tests via command line by executing the following command:
mvn install -DskipTests
If you absolutely must, you can also use the maven.test.skip property to skip compiling the tests. maven.test.skip is honored by Surefire and the Compiler Plugin.
mvn install -Dmaven.test.skip=true
===============================
638 cd com.isoftstone.5100.ec/
639 ls
640 mvn install
641 \\\;
642 ls
643 cd mgt/
644 ls
645 cd goods/
646 ls
647 mvn install
648 mvn -s ~/apache-maven-3.0.3/conf/internet-settings.xml install
==================
593 cd virgo-tomcat-server-3.5.0.RELEASE/
594 ls
595 mvn -s ~/apache-maven-3.0.3/conf/internet-settings.xml eclipse:eclipse -DdownloadSources
============
541 mv default-settings.xml internet-settings.xml
531 mv settings.xml office-settings.xml
====killed eclipse in ubuntu
jimmy@jimmy:~$ ps aux |grep eclipse
jimmy 4671 5.2 16.5 1008988 314536 ? Sl 14:00 3:04 /home/jimmy/eclipse/eclipse
jimmy 6847 0.0 0.0 5628 768 pts/0 S+ 14:59 0:00 grep --color=auto eclipse
jimmy@jimmy:~$ kill 4671
jimmy@jimmy:~$
==========Maven skip test ===========
Skipping Tests
To skip running the tests for a particular project, set the skipTests property to true.
Xml代码 收藏代码
1. <project>
2. [...]
3. <build>
4. <plugins>
5. <plugin>
6. <groupId>org.apache.maven.plugins</groupId>
7. <artifactId>maven-surefire-plugin</artifactId>
8. <version>2.4.2</version>
9. <configuration>
10. <skipTests>true</skipTests>
11. </configuration>
12. </plugin>
13. </plugins>
14. </build>
15. [...]
16. </project>
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>
You can also skip the tests via command line by executing the following command:
mvn install -DskipTests
If you absolutely must, you can also use the maven.test.skip property to skip compiling the tests. maven.test.skip is honored by Surefire and the Compiler Plugin.
mvn install -Dmaven.test.skip=true
===============================
638 cd com.isoftstone.5100.ec/
639 ls
640 mvn install
641 \\\;
642 ls
643 cd mgt/
644 ls
645 cd goods/
646 ls
647 mvn install
648 mvn -s ~/apache-maven-3.0.3/conf/internet-settings.xml install
==================
593 cd virgo-tomcat-server-3.5.0.RELEASE/
594 ls
595 mvn -s ~/apache-maven-3.0.3/conf/internet-settings.xml eclipse:eclipse -DdownloadSources
============
541 mv default-settings.xml internet-settings.xml
531 mv settings.xml office-settings.xml
推荐阅读
-
浅谈regExp的test方法取得的值变化的原因及处理方法
-
Win10 AV-Test的杀软大PK:Win10 Defender不再花瓶
-
javascript 使用正则test( )第一次是 true,第二次是false
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
简述JavaScript的正则表达式中test()方法的使用
-
基于Android CALL && SendMes Test的相关介绍
-
mysql8.0版本skip-grant-tables出现的新问题
-
Linux shell中的test命令用法教程
-
Shell脚本test命令使用总结和实例
-
JS正则表达式从入门到入土(9)—— test方法以及它的那些坑