2010-04-16

[memo] Sun SPOT build.xml

build.xml に記載されているのは,おそらくデフォルトだと↓みたいな感じ.

<property name="user.properties.file" value="build.properties"/>
    <property file="${user.home}/.sunspot.properties"/>
    <import file="${sunspot.home}/build.xml"/>

で,.sunspot.propertiesっていうファイルがどこに有るかといえば,C:\Documents and Setting\<user>にある.

まとめると
user.home = C:\Documents and Setting\<user>
sunspot.home = build.xmlのある場所
になるかと.


ビルドする際に,パッケージ毎に.sunspot.propertiesを設定したければ,build.xmlを
    <property file="${sunspot.home}/.sunspot.properties"/>
    <import file="${sunspot.home}/build.xml"/>
のように変更し,build.xmlと同じ場所に,.sunpot.propertiesのファイルを作ればOK.

0 件のコメント: