Lets take a look at the paragraph I would like to remove:
Run the Arquillian Tests
-------------------------
This quickstart provides Arquillian tests. By default, these tests are configured to be skipped as Arquillian tests require
the use of a container.
_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven
setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete
instructions and additional options._
1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:
mvn clean test -Parq-jbossas-remote
For example in the case of the spring-kitchensink-basic quickstart:
This quickstart provides Arquillian tests. By default, these tests are configured to be skipped as Arquillian tests require
the use of a container.
There is a test in the main project:
org.jboss.as.quickstarts.kitchensink.spring.basic.test.MemberDaoTest
which is not Arquillian test - it is SpringJUnit test
By default, the test is not skipped - it runs automatically.
The test does not require the use of a container
1. Make sure you have started the JBoss Server as described above.
Why? It is not necessary...
2. Open a command line and navigate to the root directory of this quickstart.
This confirms that we are talking about the main project
3. Type the following command to run the test goal with the following profile activated:
mvn clean test -Parq-jbossas-remote
There is no such a profile in the pom file!
This is same for the other spring-kitchensink-* quickstarts
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
Lets take a look at the paragraph I would like to remove:
Run the Arquillian Tests ------------------------- This quickstart provides Arquillian tests. By default, these tests are configured to be skipped as Arquillian tests require the use of a container. _NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._ 1. Make sure you have started the JBoss Server as described above. 2. Open a command line and navigate to the root directory of this quickstart. 3. Type the following command to run the test goal with the following profile activated: mvn clean test -Parq-jbossas-remoteFor example in the case of the spring-kitchensink-basic quickstart:
org.jboss.as.quickstarts.kitchensink.spring.basic.test.MemberDaoTest
which is not Arquillian test - it is SpringJUnit test
3. Type the following command to run the test goal with the following profile activated: mvn clean test -Parq-jbossas-remoteThis is same for the other spring-kitchensink-* quickstarts