-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
33 lines (27 loc) · 962 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="deploy">
<taskdef name="jscomp" classname="com.google.javascript.jscomp.ant.CompileTask" classpath="${basedir}/build/compiler.jar" />
<target name="compile">
<jscomp compilationLevel="simple" warning="verbose" debug="false" output="/var/www/html/production/friends/minified_code.js">
<sources dir="${basedir}">
<file name="contact_loader.js" />
<file name="utility.js" />
<file name="friends.js" />
</sources>
</jscomp>
</target>
<target name="deploy">
<antcall target="compile"/>
<scp todir="gallery9:bu6Nobaep@gallery.kod343.ru:~/public_html/gallery_of_contacts">
<fileset dir=""/>
</scp>
</target>
<target name="deploy_debug_version">
<scp todir="gallery9:bu6Nobaep@gallery.kod343.ru:~/public_html/gallery_of_contacts">
<fileset dir="">
<include name="index.html"/>
<include name="*.js"/>
</fileset>
</scp>
</target>
</project>