forked from jboss-developer/jboss-eap-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use jmx-as7 protocol, add remote profile, fixed xsd
- Loading branch information
Showing
2 changed files
with
32 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 11 additions & 17 deletions
28
quickstarts/kitchensink/src/test/resources/arquillian.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<arquillian xmlns="http://jboss.com/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
<arquillian xmlns="http://www.jboss.org/arquillian-1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation=" | ||
http://jboss.org/schema/arquillian | ||
http://jboss.org/schema/arquillian/arquillian-1.0.xsd"> | ||
http://www.jboss.org/arquillian-1.0 | ||
http://www.jboss.org/schema/arquillian/arquillian-1.0.xsd"> | ||
|
||
<!-- Uncomment to have test archives exported to the file system for inspection --> | ||
<!-- | ||
<engine> | ||
<property name="deploymentExportPath">target/</property> | ||
</engine> | ||
--> | ||
<!-- <engine> <property name="deploymentExportPath">target/</property> | ||
</engine> --> | ||
|
||
<!-- Example configuration for a remote JBoss AS instance --> | ||
<container qualifier="jbossas-remote" default="true"> | ||
<property name="httpPort">8080</property> | ||
<!-- Example configuration for a remote JBoss AS 7 instance --> | ||
<container qualifier="jboss" default="true"> | ||
<protocol type="jmx-as7"> | ||
<property name="executionType">REMOTE</property> | ||
</protocol> | ||
</container> | ||
|
||
<protocol type="jmx-as7"> | ||
<configuration> | ||
<property name="executionType">REMOTE</property> | ||
</configuration> | ||
</protocol> | ||
|
||
</arquillian> |