Created
February 2, 2015 23:31
-
-
Save buttso/8183ec7245855f95fa8a to your computer and use it in GitHub Desktop.
weblogic-with-arquillian - arquillian configuration file
This file contains hidden or 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
<?xml version="1.0"?> | |
<arquillian | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns="http://jboss.org/schema/arquillian" | |
xsi:schemaLocation="http://jboss.org/schema/arquillian | |
http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> | |
<!-- | |
<engine> | |
<property name="deploymentExportPath">target/</property> | |
</engine> | |
--> | |
<container qualifier="weblogic" default="true"> | |
<defaultProtocol type="Servlet 3.0" /> | |
<configuration> | |
<property name="wlHome">/Users/sbutton/Oracle/Middleware/wlserver</property> | |
<property name="adminUrl">t3://localhost:7001</property> | |
<property name="adminUserName">weblogic</property> | |
<property name="adminPassword">welcome1</property> | |
<property name="target">AdminServer</property> | |
</configuration> | |
</container> | |
</arquillian> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment