blob: 867a12734744d718bd7451dafd42be359cbe8cb8 [file] [log] [blame]
<project name="Creates an Eclipse Project from an External JAR" default="run">
<target name="run">
<property name="jar_dir" value="target/lib/node_modules"/>
<echo>Moving files in Linux</echo>
<move file="${jar_dir}/angular-ui-tree" tofile="${jar_dir}/angular-ui-tree/2.22.5"/>
<move file="${jar_dir}/split.js" tofile="${jar_dir}/splitjs/1.2.0"/>
<move file="${jar_dir}/jsonforms/dist" tofile="${jar_dir}/jsonforms"/>
<move file="${jar_dir}/jsonforms/node_modules/angular-ui-bootstrap/dist" tofile="${jar_dir}/jsonforms"/>
<copy todir="../org.eclipse.oss.ajax/src/splitjs">
<fileset dir="${jar_dir}/splitjs"/>
</copy>
<copy todir="../org.eclipse.oss.ajax/src/angular-ui-tree">
<fileset dir="${jar_dir}/angular-ui-tree"/>
</copy>
<copy todir="../org.eclipse.oss.ajax/src/angular-recursion">
<fileset dir="${jar_dir}/angular-recursion"/>
</copy>
<copy todir="../org.eclipse.oss.ajax/src/jsonforms">
<fileset dir="${jar_dir}/jsonforms"/>
</copy>
</target>
</project>