mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-23 22:00:29 +03:00
2fcc7ca242
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@122 c66351dc-e62f-0410-b875-e3a5c0b9693f
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?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="." />
|
|
<property name="webim.location" value="../webim" />
|
|
|
|
<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="d=${webim.location}/js/" />
|
|
<!-- <arg value="debug"/> -->
|
|
<!-- <arg value="debugnames"/> -->
|
|
<!-- <arg value="o=0,0"/> -->
|
|
<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>
|