2008-09-30 03:24:18 +04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<project basedir="." default="update" name="Obfuscator">
|
2011-02-27 03:54:27 +03:00
|
|
|
<property name="obfuscator.location" value="."/>
|
|
|
|
<property name="webim.location" value="../164"/>
|
2008-09-30 03:24:18 +04:00
|
|
|
|
2011-02-27 03:54:27 +03: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"/>
|
|
|
|
<arg value="${obfuscator.location}/soundcheck.js"/>
|
|
|
|
<arg value="d=${webim.location}"/>
|
|
|
|
<!-- <arg value="debug"/> -->
|
|
|
|
<!-- <arg value="debugnames"/> -->
|
|
|
|
<arg value="o=0,0"/>
|
|
|
|
<classpath>
|
|
|
|
<pathelement location="${obfuscator.location}/bin/"/>
|
|
|
|
</classpath>
|
|
|
|
</java>
|
|
|
|
</target>
|
2008-09-30 03:24:18 +04:00
|
|
|
|
2011-02-27 03:54:27 +03:00
|
|
|
<target name="build" depends="init">
|
|
|
|
<javac destdir="${obfuscator.location}/bin" fork="false">
|
|
|
|
<src path="${obfuscator.location}"/>
|
|
|
|
</javac>
|
|
|
|
</target>
|
2008-09-30 03:24:18 +04:00
|
|
|
|
2011-02-27 03:54:27 +03:00
|
|
|
<target name="init">
|
|
|
|
<mkdir dir="${obfuscator.location}/bin"/>
|
|
|
|
</target>
|
2008-09-30 03:24:18 +04:00
|
|
|
|
|
|
|
</project>
|