<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Atlassian&#174; as a Web-App Framework</title>
	<atom:link href="http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html</link>
	<description>On the never-ending quest for systems bliss</description>
	<lastBuildDate>Mon, 07 Jun 2010 11:13:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jdoklovic</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-767</link>
		<dc:creator>jdoklovic</dc:creator>
		<pubDate>Fri, 05 Feb 2010 14:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-767</guid>
		<description>maven-resources-plugin might work, however I&#039;m not sure what maven does if it sees a .java file in src/main/resources. I&#039;m guessing it may try to compile it if it&#039;s on the classpath. An easy workaround would be to put it in some other directory though and still use maven-resources-plugin.

I&#039;ll give it a shot and see what happens.</description>
		<content:encoded><![CDATA[<p>maven-resources-plugin might work, however I&#8217;m not sure what maven does if it sees a .java file in src/main/resources. I&#8217;m guessing it may try to compile it if it&#8217;s on the classpath. An easy workaround would be to put it in some other directory though and still use maven-resources-plugin.</p>
<p>I&#8217;ll give it a shot and see what happens.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tunaranch</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-765</link>
		<dc:creator>tunaranch</dc:creator>
		<pubDate>Fri, 05 Feb 2010 01:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-765</guid>
		<description>Rather than ant, if you want to generate a class on the fly, why not use maven-resources-plugin to filter it during the generate-sources maven phase?</description>
		<content:encoded><![CDATA[<p>Rather than ant, if you want to generate a class on the fly, why not use maven-resources-plugin to filter it during the generate-sources maven phase?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bqlr</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-641</link>
		<dc:creator>bqlr</dc:creator>
		<pubDate>Tue, 05 Jan 2010 02:19:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-641</guid>
		<description>stupid! so complicated configuration, where is business model ? where is Domain-driven Design, sorry, do you know DDD?

see another true light-weight framework, so simple: DI + AOP + DDD = jdonframework, http://jdon.dev.java.net</description>
		<content:encoded><![CDATA[<p>stupid! so complicated configuration, where is business model ? where is Domain-driven Design, sorry, do you know DDD?</p>
<p>see another true light-weight framework, so simple: DI + AOP + DDD = jdonframework, <a href="http://jdon.dev.java.net" rel="nofollow">http://jdon.dev.java.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jdoklovic</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-640</link>
		<dc:creator>jdoklovic</dc:creator>
		<pubDate>Mon, 04 Jan 2010 20:28:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-640</guid>
		<description>I create the version class on the fly so that I can override the version used at runtime via a maven property.
Essentially this let&#039;s me pass a version on the command line when building.
This is useful if you use an external system (say, JIRA) to get your version/build numbers.

Using JIRA + Bamboo in this manner is outlined in another post:
http://blog.sysbliss.com/uncategorized/release-management-with-atlassian-bamboo-and-jira.html</description>
		<content:encoded><![CDATA[<p>I create the version class on the fly so that I can override the version used at runtime via a maven property.<br />
Essentially this let&#8217;s me pass a version on the command line when building.<br />
This is useful if you use an external system (say, JIRA) to get your version/build numbers.</p>
<p>Using JIRA + Bamboo in this manner is outlined in another post:<br />
<a href="http://blog.sysbliss.com/uncategorized/release-management-with-atlassian-bamboo-and-jira.html" rel="nofollow">http://blog.sysbliss.com/uncategorized/release-management-with-atlassian-bamboo-and-jira.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wim Deblauwe</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-639</link>
		<dc:creator>Wim Deblauwe</dc:creator>
		<pubDate>Mon, 04 Jan 2010 19:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-639</guid>
		<description>Why are you creating this Java class on the fly? I am doing something simular, but just put the version in a properties file using the filtering of the resource plugin and then loading that properties file in the application.

Great post!</description>
		<content:encoded><![CDATA[<p>Why are you creating this Java class on the fly? I am doing something simular, but just put the version in a properties file using the filtering of the resource plugin and then loading that properties file in the application.</p>
<p>Great post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cburleson</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-634</link>
		<dc:creator>cburleson</dc:creator>
		<pubDate>Sat, 02 Jan 2010 00:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-634</guid>
		<description>This is a great post, overflowing with value. Thanks so much for taking the time to share your detailed journey. I intend to go through this carefully soon to see what parts might be applicable to a J2EE Reference Architecture I am working on. It seems that you may be a little too closely tied to some Atlassian dependencies for my taste. But... this is very educational.</description>
		<content:encoded><![CDATA[<p>This is a great post, overflowing with value. Thanks so much for taking the time to share your detailed journey. I intend to go through this carefully soon to see what parts might be applicable to a J2EE Reference Architecture I am working on. It seems that you may be a little too closely tied to some Atlassian dependencies for my taste. But&#8230; this is very educational.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jessica Doklovic</title>
		<link>http://blog.sysbliss.com/general-dev/atlassian-as-a-web-app-framework.html/comment-page-1#comment-633</link>
		<dc:creator>Jessica Doklovic</dc:creator>
		<pubDate>Thu, 31 Dec 2009 18:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sysbliss.com/?p=107#comment-633</guid>
		<description>spoiler alert U == dork</description>
		<content:encoded><![CDATA[<p>spoiler alert U == dork</p>
]]></content:encoded>
	</item>
</channel>
</rss>
