Skip to content

Instantly share code, notes, and snippets.

@buttso
Created February 2, 2015 23:31
Show Gist options
  • Save buttso/8183ec7245855f95fa8a to your computer and use it in GitHub Desktop.
Save buttso/8183ec7245855f95fa8a to your computer and use it in GitHub Desktop.
weblogic-with-arquillian - arquillian configuration file
<?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