Open dotrek opened 3 years ago
Hey,
Great idea, but to do that properly it is necessary to implement the following functionalities:
As presented above, this is a complex request which requires big effort both on the addon side and plugin side.
Till implementation is completed, please take a look at ant script to copy files to file system:
<?xml version="1.0" encoding="UTF-8"?>
<project name="CopyToVmware" default="execAll" basedir=".">
<property name="targetRoot" value="Y:\app\..." />
<target name="copyClassToVM">
<copy todir="${targetRoot}\codebase" verbose="true">
<fileset dir="build" includes="**/*.class" />
</copy>
</target>
...
<target name="execAll">
<antcall target="copyClassToVM" />
<antcall target="copyBin" />
.....
</target>
</project>
I would love to have this plugin with additional functionality of copying compiled/recompiled classes to configured targets. Targets can be configured automatically after putting path to WT_HOME (src -> codebase, codebase -> codebase etc.). Copying should be executed after every compilation action.