-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopyToUMongo.xml
22 lines (22 loc) · 1009 Bytes
/
copyToUMongo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project name="mongo-document-editor" default="default" basedir=".">
<target name="copyToUMongo">
<delete dir="../umongo/lib/ext/mongo-document-editor.jar"/>
<copy todir="../umongo/lib/ext">
<fileset dir="lib">
<include name="guava*.jar"/>
<include name="jackson*.jar"/>
<include name="jidefx*.jar"/>
</fileset>
<fileset file="dist/mongo-document-editor.jar"/>
</copy>
</target>
</project>