Alessio Caiazza is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

nolith / eveberry-bis http://vlad.off.net/eve/EveBerry/

Eveberry with BIS support

Clone this repository (size: 93.5 KB): HTTPS / SSH
hg clone https://bitbucket.org/nolith/eveberry-bis
hg clone ssh://hg@bitbucket.org/nolith/eveberry-bis

eveberry-bis / build.xml

Branch
default
<?xml version="1.0" encoding="UTF-8"?>

<project name="EveBerry" default="build">
   <taskdef resource="bb-ant-defs.xml" />
 
   <!-- rapc and sigtool require the jde.home property to be set -->
   <property name="jde.home" location="/Users/vladimir/proj/bb-jde-410" />
   <property name="jde.homez" location="/Users/vladimir/tmp/rim-jde410" />
 
   <!-- directory of simulator to copy files to -->
   <property name="simulator.home" location="/Users/vladimir/tmp/rim/BlackBerry Device Simulators 4.2.2/4.2.2.89 (8300-ATT)" />
 
   <property name="src.dir" location="src" />
   <property name="build.dir" location="build" />
   <property name="cod.name" value="EveBerry" />
 
   <target name="build">
      <mkdir dir="${build.dir}" />
      <rapc output="${cod.name}" srcdir="${src.dir}" destdir="${build.dir}">
         <jdp
             title="EveBerry"
             vendor="Mr Rupert's Quality Software Group"
             version="0.2.5"
             description="EVE Online character monitoring tool."
             icon="../images/eveberry.png"
           />
      </rapc>
   </target>
 
   <target name="sign">
      <sigtool codfile="${build.dir}/${cod.name}.cod" />
   </target>
 
   <target name="clean">
      <delete dir="${build.dir}" />
   </target>
 
   <target name="load-simulator" depends="build">
      <copy todir="${simulator.home}">
         <fileset dir="${build.dir}" includes="*.cod,*.cso,*.debug,*.jad,*.jar" />
      </copy>
   </target>
</project>