Все вопросы: [surefire]
9 вопросов
Why is Maven failing with a SurefireExecutionException:> Cannot set option parallel with value
Hi I am working through the tutorial here using windows XP and latest builds http://binil.wordpress.com/2006/12/08/automated-smoke-tests-with-selenium-cargo-testng-and-maven/ Could someone please tell me what the tags are. <parallel>true</parallel> <threadCount>10</threadC...
How do I get my Maven Integration tests to run
I have a maven2 multi-module project and in each of my child modules I have JUnit tests that are named Test.java and Integration.java for unit tests and integration tests respectively. When I execute: mvn test all of the JUnit tests *Test.java within the child modules are executed. When I...
Maven Multi-Module builds not honoring failsafe-maven-plugin?
I recently discovered that Hudson was not the problem. In actuality it was Maven itself as the multi-module build was causing the build failure, not Hudson. I just hadn't noticed where the issue actually existed. Leaving the original question here. I'm using the failsafe-maven-plugin to run...
maven surefire reporting plugin configuration
I have a multi-module maven project. The parent pom.xml is simply a way to reference common information for the 4 subprojects. I have quite a few JUnit tests that run and I also have the Parent Project set up for Project WebSite using the maven-info-reports-plugin. I have the maven-surefire-r...
Конфигурация модульного теста Maven Eclipse
Я использую Eclipse, и для некоторых моих модульных тестов мне нужно установить некоторые аргументы JVM, чтобы тест работал, в частности, -Djava.library.path. Я установил его в моем POM файле следующим образом: <plugin> <groupId>org.apache.maven.plugins</groupId> <a...
Есть ли способ пропустить только один тест в maven?
Я хотел бы пропустить только один тест при запуске mvn install. Есть ли способ сделать это?
Maven 2.1.0 не передает системные свойства виртуальной машине Java
Мы используем командную строку для передачи системных свойств в Java. виртуальная машина при запуске нашей Hudson построена на базе Linux. Он использовал чтобы работать достаточно хорошо в 2.0.9, поскольку мы обновили до 2.1.0, он вообще перестала работать. Системные свойства никогда не делают...
Плагин Maven 2, сборка + уверенность
Если я определяю плагин в теге и хочу использовать его в команде своего сайта, как мне это сделать? Нужно ли мне снова определять плагин в теге ? А как насчет конфигурации, которую я, вероятно, сделал в теге сборки и хочу, чтобы она также выполнялась в теге отчетов? (я не хочу указывать, нап...
Как использовать плагин Maven Surefire с разными группами для тестирования и интеграции-теста?
Я хочу использовать testng с Подключаемый модуль Surefire из Maven . Идея состоит в том, чтобы пометить некоторые тесты группой integrationTest и дважды запустить плагин: для цели test, исключая группу integrationTest, и для цели integration-test, включая только группу integrationTest. ...