Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
<?xml version="1.0" encoding="UTF-8"?>
<project name="weblogic.targets">
<import file="properties.xml" />
<target name="deployToWeblogic" depends="build">
<echo message="Deploying to Weblogic" />
<wldeploy action="undeploy" verbose="true" debug="true" name="${deployment.war.name}"
user="${admin.username}" password="${admin.password}" adminurl="${admin.url}"
targets="${domain.targets}" failonerror="false" />
<wldeploy action="deploy" verbose="true" debug="true" remote="${admin.remote}"
name="${deployment.war.name}" source="${deployment.war.file.path}" user="${admin.username}"
password="${admin.password}" adminurl="${admin.url}" targets="${domain.targets}" upload="true"/>
</target>
</project>