2008-09-30 03:24:18 +04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE project [<!ENTITY buildfile SYSTEM "file:./build-user.xml">]>
|
|
|
|
|
|
|
|
<project basedir="." default="update" name="Obfuscator">
|
|
|
|
<property name="obfuscator.location" value="." />
|
2011-02-21 03:02:39 +03:00
|
|
|
<property name="webim.location" value="../164" />
|
2008-09-30 03:24:18 +04:00
|
|
|
|
|
|
|
<target name="update" depends="build">
|
|
|
|
<java classname="JSO" fork="true" error="${obfuscator.location}/bin/obfuscation.log">
|
|
|
|
<arg value="${obfuscator.location}/common.js" />
|
|
|
|
<arg value="${obfuscator.location}/chat.js" />
|
|
|
|
<arg value="${obfuscator.location}/users.js" />
|
|
|
|
<arg value="${obfuscator.location}/brws.js" />
|
2009-03-17 01:25:12 +03:00
|
|
|
<arg value="d=${webim.location}" />
|
2008-09-30 03:24:18 +04:00
|
|
|
<!-- <arg value="debug"/> -->
|
|
|
|
<!-- <arg value="debugnames"/> -->
|
2009-03-17 01:25:12 +03:00
|
|
|
<arg value="o=0,0"/>
|
2008-09-30 03:24:18 +04:00
|
|
|
<classpath>
|
|
|
|
<pathelement location="${obfuscator.location}/bin/" />
|
|
|
|
</classpath>
|
|
|
|
</java>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build" depends="init">
|
|
|
|
<javac destdir="${obfuscator.location}/bin" fork="false">
|
|
|
|
<src path="${obfuscator.location}" />
|
|
|
|
</javac>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="init">
|
|
|
|
<mkdir dir="${obfuscator.location}/bin"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|