<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>whyro</title>
	<atom:link href="http://www.whyro.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whyro.org</link>
	<description>Wiring your home together</description>
	<lastBuildDate>Sun, 14 Feb 2010 18:02:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Java interface to Tellstick in Snow Leopard</title>
		<link>http://www.whyro.org/2010/02/14/java-interface-to-tellstick-in-snow-leopard/</link>
		<comments>http://www.whyro.org/2010/02/14/java-interface-to-tellstick-in-snow-leopard/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 15:32:33 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jna]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[telldus]]></category>
		<category><![CDATA[tellstick]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=143</guid>
		<description><![CDATA[The Tellstick from Telldus is a small little USB dongle that lets you communicate with remote receivers such as wireless power outlets. Even though the Telldus company release their own software for controlling the Tellstick they are really open with their product and lets users access the Tellstick pretty much any way they want.
When interfacing [...]]]></description>
			<content:encoded><![CDATA[<p>The Tellstick from <a href="http://www.telldus.se/">Telldus</a> is a small little USB dongle that lets you communicate with remote receivers such as wireless power outlets. Even though the Telldus company release their own software for controlling the Tellstick they are really open with their product and lets users access the Tellstick pretty much any way they want.</p>
<p>When interfacing the Tellstick in Java on Mac OS X there is at least three ways of doing this:</p>
<p>1. <a href="http://users.frii.com/jarvi/rxtx/">RXTXcomm</a>, this way you access the device directly. You&#8217;ll need to download <a href="http://www.ftdichip.com/Drivers/VCP.htm">Virtual COM Port drivers</a>. On the downside you&#8217;ll have to implement support for the different receiver protocols on your own.<br />
2. <a href="http://developer.telldus.se/browser/trunk/bindings/java">JNI bindings</a>, using Telldus tellstick library. The bindings are very old and haven&#8217;t kept up with the development of the Telldus tellstick library.<br />
3. <a href="https://jna.dev.java.net/">JNA</a>, using Telldus tellstick library but without the need for the JNI bindings.</p>
<p>This post will focus on the third alternative. When using Telldus own library (TelldusCore) you don&#8217;t have to deal with the different kinds of protocols used by the receivers. You&#8217;ll automatically have access to every protocol supported by Telldus.</p>
<p>As of writing this post, the current Telldus Center 2 release does only come with a 32-bit version of the TelldusCore library. If you&#8217;re running a 32-bit version of Java you only have to download and install Telldus Center 2 to get the TelldusCore library. But if you&#8217;re like me, running a 64-bit version of Java you need to recompile TelldusCore.</p>
<pre class="brush: bash;">
$ java -version
java version &quot;1.6.0_17&quot;
Java(TM) SE Runtime Environment (build 1.6.0_17-b04-248-10M3025)
Java HotSpot(TM) 64-Bit Server VM (build 14.3-b01-101, mixed mode)
</pre>
<p>Now <a href="http://download.telldus.se/TellStick/Software/telldus-core/telldus-core-2.0.2.tar.gz">Download TelldusCore 2.0.2</a>.</p>
<p>In order to compile TelldusCore 2.0.2 you&#8217;ll also need:</p>
<ul>
<li><a href="http://www.cmake.org/cmake/resources/software.html">cmake</a> &#8211; used to configure the sources.</li>
<li><a href="http://www.ftdichip.com/Drivers/D2XX.htm">D2XX Direct Drivers</a> &#8211; download the latest version (currently 0.1.7). Read the readme file on how to install it properly. It&#8217;s fairly simple, especially if you have som terminal knowledge. Be sure to copy from the bin/10.6 directory which contains a 64-bit version of the library.</li>
</ul>
<p>Untar the TelldusCore sources and (inside telldus-core-2.0.2) run</p>
<pre class="brush: bash;">
$ cmake -DBUILD_RFCMD=0 -DSUPPORT_USB=1 -DFTD2XX_LIBRARY=/usr/local/lib/libftd2xx.dylib
</pre>
<p>This will configure the sources for building TelldusCore without rfcmd. Make sure that FTD2XX_LIBRARY actually points to the library that you copied when installing the D2XX Direct Drivers.</p>
<p>Anyway, your output should look something like this:</p>
<pre class="brush: bash;">$ cmake -DBUILD_RFCMD=0 -DSUPPORT_USB=1 -DFTD2XX_LIBRARY=/usr/local/lib/libftd2xx.dylib
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Checking whether C compiler has -isysroot
-- Checking whether C compiler has -isysroot - yes
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Checking whether CXX compiler has -isysroot
-- Checking whether CXX compiler has -isysroot - yes
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Looking for Q_WS_X11
-- Looking for Q_WS_X11 - not found.
-- Looking for Q_WS_WIN
-- Looking for Q_WS_WIN - not found.
-- Looking for Q_WS_QWS
-- Looking for Q_WS_QWS - not found.
-- Looking for Q_WS_MAC
-- Looking for Q_WS_MAC - found
-- Looking for QT_MAC_USE_COCOA
-- Looking for QT_MAC_USE_COCOA - found
-- Found Qt-Version 4.6.1 (using /usr/bin/qmake)
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/pakerfeldt/telldus-core-2.0.2</pre>
<p>Now build TelldusCore by running make:</p>
<pre class="brush: bash;">$ make
Scanning dependencies of target TelldusCore
[  5%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/Device.cpp.o
[ 10%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceBrateck.cpp.o
[ 15%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceEverflourish.cpp.o
[ 21%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceGroup.cpp.o
[ 26%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceIkea.cpp.o
[ 31%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceNexa.cpp.o
[ 36%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceRisingSun.cpp.o
[ 42%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceSartano.cpp.o
[ 47%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceUndefined.cpp.o
[ 52%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceUpm.cpp.o
[ 57%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceWaveman.cpp.o
[ 63%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/DeviceX10.cpp.o
[ 68%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/Controller.cpp.o
[ 73%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/Manager.cpp.o
[ 78%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/Settings.cpp.o
[ 84%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/telldus-core.cpp.o
[ 89%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/SettingsCoreFoundationPreferences.cpp.o
[ 94%] Building CXX object driver/libtelldus-core/CMakeFiles/TelldusCore.dir/win/Device.cpp.o
Linking CXX shared library TelldusCore.framework/Versions/2.0.2/TelldusCore
Copying OS X content driver/libtelldus-core/TelldusCore.framework/Versions/2.0.2/Headers/telldus-core.h
[ 94%] Built target TelldusCore
Scanning dependencies of target tdtool
[100%] Building CXX object tdtool/CMakeFiles/tdtool.dir/main.cpp.o
Linking CXX executable tdtool
[100%] Built target tdtool</pre>
<p>The result is placed in telldus-core-2.0.2/driver/libtelldus-core/TelldusCore.framework/.</p>
<p>Create the directory /Library/Frameworks/TelldusCore.framework/Versions/2.0.2/</p>
<pre class="brush: bash;">$ mkdir -p /Library/Frameworks/TelldusCore.framework/Versions/2.0.2/</pre>
<p>And copy the result to this directory:</p>
<pre class="brush: bash;">$ cp -Rp driver/libtelldus-core/TelldusCore.framework/* /Library/Frameworks/TelldusCore.framework/Versions/2.0.2/</pre>
<p>Also, add a symbolic link named libTelldusCore.dylib in that directory:</p>
<pre class="brush: bash;">$ ln -s /Library/Frameworks/TelldusCore.framework/Versions/2.0.2/TelldusCore /Library/Frameworks/TelldusCore.framework/Versions/2.0.2/libTelldusCore.dylib</pre>
<p>You should now be able to access you&#8217;re newly built 64-bit TelldusCore using JNA. This is actually quite easy. A JNA binding to TelldusCore could look something like this:</p>
<pre class="brush: java;">package se.akerfeldt.code.tellstick;

import com.sun.jna.Library;
import com.sun.jna.Native;

public interface TellstickBinding extends Library {

	TellstickBinding INSTANCE = (TellstickBinding) Native.loadLibrary((&quot;TelldusCore&quot;), TellstickBinding.class);

	int tdAddDevice();
	int tdTurnOn(int intDeviceId);
	int tdTurnOff(int intDeviceId);
	int tdGetNumberOfDevices();
	int tdGetDeviceId(int deviceIndex);
	boolean tdSetName(int deviceId, String name);
	String tdGetName(int deviceId);
	boolean tdSetProtocol(int deviceId, String protocol);
	String tdGetProtocol(int deviceId);
	boolean tdSetModel(int deviceId, String model);
	String tdGetModel(int deviceId);
	boolean tdSetDeviceParameter(int deviceId, String name, String value);
	String tdGetDeviceParameter(int deviceId, String name, String defaultValue);
	String tdGetErrorString(int errorNo);
}</pre>
<p>Please refer to telldus-core.h for a complete list of native methods. I haven&#8217;t paid much attention to the Java class above.</p>
<p>Now, before running your application add -Djna.library.path=/Library/Frameworks/TelldusCore.framework/Versions/2.0.2 to your VM arguments.</p>
<p>In order to turn something on/off you&#8217;ll have to add a device for it, just use the JNA binding for that!</p>
<pre class="brush: java;">int deviceId = TellstickBinding.INSTANCE.tdAddDevice();
TellstickBinding.INSTANCE.tdSetName(deviceId, &quot;Outdoor light&quot;);
TellstickBinding.INSTANCE.tdSetProtocol(deviceId, &quot;arctech&quot;);
TellstickBinding.INSTANCE.tdSetModel(deviceId, &quot;codeswitch&quot;);
TellstickBinding.INSTANCE.tdSetDeviceParameter(deviceId, &quot;house&quot;, &quot;A&quot;);
TellstickBinding.INSTANCE.tdSetDeviceParameter(deviceId, &quot;unit&quot;, &quot;1&quot;);

TellstickBinding.INSTANCE.tdTurnOn(deviceId);</pre>
<p>I&#8217;m still looking for a better source of information regarding the different kinds of protocols and models. In the meantime <a href="http://developer.telldus.se/wiki/TellStick_conf">this Telldus wiki</a> page might give some more information for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2010/02/14/java-interface-to-tellstick-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Moved to GitHub!</title>
		<link>http://www.whyro.org/2010/02/03/moved-to-github/</link>
		<comments>http://www.whyro.org/2010/02/03/moved-to-github/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 21:02:24 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[trac]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=141</guid>
		<description><![CDATA[The source have now been migrated from SVN to Git at GitHub. You can access it from the GitHub link in the menu. Although still accessible, the SVN repository and the Trac site is obsolete from now on (and will be removed later). There will also be a short &#8220;getting started&#8221; guide in the wiki [...]]]></description>
			<content:encoded><![CDATA[<p>The source have now been migrated from SVN to Git at GitHub. You can access it from the GitHub link in the menu. Although still accessible, the SVN repository and the Trac site is obsolete from now on (and will be removed later). There will also be a short &#8220;getting started&#8221; guide in the wiki on how to work with git an the Eclipse projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2010/02/03/moved-to-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving to Github?</title>
		<link>http://www.whyro.org/2010/02/03/moving-to-github/</link>
		<comments>http://www.whyro.org/2010/02/03/moving-to-github/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 18:10:24 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[repository]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=136</guid>
		<description><![CDATA[Thanks (?) to a cold I&#8217;ve recently catched, I&#8217;ve had the time to work on whyro last couple of days. Been re-writing most of the code (which is a mess right now) but hopefully it will turn out nice. I&#8217;ve also setup up a git repository over at github.com, and I will try migrating the [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks (?) to a cold I&#8217;ve recently catched, I&#8217;ve had the time to work on whyro last couple of days. Been re-writing most of the code (which is a mess right now) but hopefully it will turn out nice. I&#8217;ve also setup up a git repository over at github.com, and I will try migrating the current code base. Not that familiar with git so let&#8217;s see how that goes. Anyway, just wanted to let you readers know that the project is in no way stalled.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2010/02/03/moving-to-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design discussion</title>
		<link>http://www.whyro.org/2009/12/23/design-discussion/</link>
		<comments>http://www.whyro.org/2009/12/23/design-discussion/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 11:02:39 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=133</guid>
		<description><![CDATA[Just added a new design discussion page. It contains some of the topics discussed at the last dev meeting. The design discussion page will serve as a scratch pad for developers to use. You might look at it pretty much as the SVN trunk. You&#8217;ll find recent design proposals and ideas but do not rely [...]]]></description>
			<content:encoded><![CDATA[<p>Just added a new <a href="http://www.whyro.org/wiki/index.php/Design_discussion">design discussion page</a>. It contains some of the topics discussed at the last dev meeting. The design discussion page will serve as a scratch pad for developers to use. You might look at it pretty much as the SVN trunk. You&#8217;ll find recent design proposals and ideas but do not rely on it to much.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/12/23/design-discussion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whyro gets a twitter account</title>
		<link>http://www.whyro.org/2009/11/19/whyro-gets-a-twitter-account/</link>
		<comments>http://www.whyro.org/2009/11/19/whyro-gets-a-twitter-account/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 09:36:56 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=129</guid>
		<description><![CDATA[We&#8217;ve added a twitter account for the project, follow it at http://twitter.com/whyro_project!
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve added a twitter account for the project, follow it at <a href="http://twitter.com/whyro_project">http://twitter.com/whyro_project</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/11/19/whyro-gets-a-twitter-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New sensors have arrived</title>
		<link>http://www.whyro.org/2009/11/19/new-sensors-have-arrived/</link>
		<comments>http://www.whyro.org/2009/11/19/new-sensors-have-arrived/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 08:34:24 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[sensors]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=119</guid>
		<description><![CDATA[Just received a couple of more 1-wire sensors. A temperature/solar sensor and a dual counter. Hopefully they will speed up the development of whyro a bit.
]]></description>
			<content:encoded><![CDATA[<p>Just received a couple of more 1-wire sensors. A temperature/solar sensor and a dual counter. Hopefully they will speed up the development of whyro a bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/11/19/new-sensors-have-arrived/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slashdot technology story &#8211; home automation</title>
		<link>http://www.whyro.org/2009/10/27/slashdot-technology-story-home-automation/</link>
		<comments>http://www.whyro.org/2009/10/27/slashdot-technology-story-home-automation/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 09:16:08 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[slashdot]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=115</guid>
		<description><![CDATA[StonyCreekBare writes &#8220;What do people have to say about the current state of Home Automation software? Preferably Linux based, but mainly the field in general, and principally the DIY flavors as opposed to the upscale turnkey systems. I am familiar with &#8230;&#8221; &#8211;  Read more at Slashdot.
]]></description>
			<content:encoded><![CDATA[<p><em>StonyCreekBare writes &#8220;What do people have to say about the current state of Home Automation software? Preferably Linux based, but mainly the field in general, and principally the DIY flavors as opposed to the upscale turnkey systems. I am familiar with &#8230;&#8221;</em> &#8211; <a href="http://tech.slashdot.org/story/09/10/26/164226/What-is-the-Current-State-of-Home-Automation"> Read more at Slashdot</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/10/27/slashdot-technology-story-home-automation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wire configurations</title>
		<link>http://www.whyro.org/2009/10/13/wire-configurations/</link>
		<comments>http://www.whyro.org/2009/10/13/wire-configurations/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 15:26:40 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[Wires]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=107</guid>
		<description><![CDATA[A wire is the concept of a consumer being hooked up with a producer. A wire is created by whyro when certain conditions are met. Up until now, these conditions have been specified in the consumer. It&#8217;s easy to realize that this is kind of bad as it get&#8217;s difficult to reuse consumers even for [...]]]></description>
			<content:encoded><![CDATA[<p>A wire is the concept of a consumer being hooked up with a producer. A wire is created by whyro when certain conditions are met. Up until now, these conditions have been specified in the consumer. It&#8217;s easy to realize that this is kind of bad as it get&#8217;s difficult to reuse consumers even for slightly different tasks. We will introduce another way of defining how these conditions are specified. A first approach will be to have configurarions inside OSGi bundles. Conditions include things such as, which kind of measurements are of interest, data frequency, data quality etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/10/13/wire-configurations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anonymous ticketing disabled</title>
		<link>http://www.whyro.org/2009/10/05/anonymous-ticketing-disabled/</link>
		<comments>http://www.whyro.org/2009/10/05/anonymous-ticketing-disabled/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 06:54:11 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Supporting tools]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[trac]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=103</guid>
		<description><![CDATA[Spam is taking control over the world! Well, at least our Trac database. Due to the decent amount of spam tickets created in our Tracker the possibility for anonymous users to create tickets has been removed.
]]></description>
			<content:encoded><![CDATA[<p>Spam is taking control over the world! Well, at least our Trac database. Due to the decent amount of spam tickets created in our Tracker the possibility for anonymous users to create tickets has been removed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/10/05/anonymous-ticketing-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New SVN structure</title>
		<link>http://www.whyro.org/2009/08/18/new-svn-structure/</link>
		<comments>http://www.whyro.org/2009/08/18/new-svn-structure/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 20:22:00 +0000</pubDate>
		<dc:creator>pakerfeldt</dc:creator>
				<category><![CDATA[Supporting tools]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[pax]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.whyro.org/?p=100</guid>
		<description><![CDATA[The SVN trunk has gone through some major changes recently. There&#8217;s now one major whyro (maven) project in trunk which contains all of whyro&#8217;s sub (eclipse) projects, paxified. From now on you will need to have Maven2 on your workstation if you would like to work with the whyro source code and you&#8217;ll also need [...]]]></description>
			<content:encoded><![CDATA[<p>The SVN trunk has gone through some major changes recently. There&#8217;s now one major whyro (maven) project in trunk which contains all of whyro&#8217;s sub (eclipse) projects, <em><a href="http://www.ops4j.org/projects/pax/construct/">paxified</a></em>. From now on you will need to have <a href="http://maven.apache.org/">Maven2</a> on your workstation if you would like to work with the whyro source code and you&#8217;ll also need to alter your maven settings.xml to include the whyro nexus repository. Anywho, this is not a &#8220;getting started&#8221; guide. Instead, be sure to keep posted on our wiki for a complete guide. All of you who don&#8217;t want to build whyro from source will have to wait some more for our nightly builds to be setup properly and made available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.whyro.org/2009/08/18/new-svn-structure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
