<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Antonio&#039;s Blog</title>
	<atom:link href="http://antoniogoncalves.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://antoniogoncalves.org</link>
	<description>A blog mainly about Java</description>
	<lastBuildDate>Thu, 23 May 2013 03:00:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on No, you don&#8217;t need to mock your SOAP Web Service to test it by Sergio Morales</title>
		<link>http://antoniogoncalves.org/2012/10/24/no-you-dont-need-to-mock-your-soap-web-service-to-test-it/#comment-2305</link>
		<dc:creator><![CDATA[Sergio Morales]]></dc:creator>
		<pubDate>Thu, 23 May 2013 03:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://antoniogoncalves.org/?p=1854#comment-2305</guid>
		<description><![CDATA[If you @inject some beans or even if you use inject an @ejb into the webservice is this still true? if isnt how is the way to test it?]]></description>
		<content:encoded><![CDATA[<p>If you @inject some beans or even if you use inject an @ejb into the webservice is this still true? if isnt how is the way to test it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Because I always forget how to use maven-ear-plugin by beginer</title>
		<link>http://antoniogoncalves.org/2009/10/23/because-i-always-forget-how-to-use-maven-ear-plugin/#comment-2299</link>
		<dc:creator><![CDATA[beginer]]></dc:creator>
		<pubDate>Fri, 17 May 2013 09:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://agoncal.wordpress.com/?p=478#comment-2299</guid>
		<description><![CDATA[under ear module, it is containing EARContent and inside EARContent directory WEB-INF there.]]></description>
		<content:encoded><![CDATA[<p>under ear module, it is containing EARContent and inside EARContent directory WEB-INF there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Because I always forget how to use maven-ear-plugin by beginer</title>
		<link>http://antoniogoncalves.org/2009/10/23/because-i-always-forget-how-to-use-maven-ear-plugin/#comment-2298</link>
		<dc:creator><![CDATA[beginer]]></dc:creator>
		<pubDate>Fri, 17 May 2013 09:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://agoncal.wordpress.com/?p=478#comment-2298</guid>
		<description><![CDATA[Good post. Thank you.
I have the same kind of modules and I was using ant. I&#039;m new to maven and looking for maven ear plugin. My directory structure is:

&#124;
&#124;-EARModule
     &#124;-EARContent
          &#124;-WEB-INF
&#124;
&#124;-WebModule
    &#124;----

&#124;
&#124;-Sheduler
    &#124;---

so, ear module directory structure is different. I&#039;m using java 1.6. I used downloaded jar files in lib directory(web module). I want to create ear file using maven. how do I write parent pom.xml and others. Can someone help me?]]></description>
		<content:encoded><![CDATA[<p>Good post. Thank you.<br />
I have the same kind of modules and I was using ant. I&#8217;m new to maven and looking for maven ear plugin. My directory structure is:</p>
<p>|<br />
|-EARModule<br />
     |-EARContent<br />
          |-WEB-INF<br />
|<br />
|-WebModule<br />
    |&#8212;-</p>
<p>|<br />
|-Sheduler<br />
    |&#8212;</p>
<p>so, ear module directory structure is different. I&#8217;m using java 1.6. I used downloaded jar files in lib directory(web module). I want to create ear file using maven. how do I write parent pom.xml and others. Can someone help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Let&#8217;s Turn Integration Tests with Maven to a First-Class Citizen by Jason Young</title>
		<link>http://antoniogoncalves.org/2012/12/13/lets-turn-integration-tests-with-maven-to-a-first-class-citizen/#comment-2287</link>
		<dc:creator><![CDATA[Jason Young]]></dc:creator>
		<pubDate>Thu, 25 Apr 2013 11:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://antoniogoncalves.org/?p=1949#comment-2287</guid>
		<description><![CDATA[&quot;Unit tests should be very fast to run, and if any of them fail there is probably a bug you should fix before running the integration tests even makes sense&quot;

Yes I agree 100%.

&quot;Not sure I see the point in running integration tests if unit tests have failed&quot;

I don&#039;t think the point is to run integration tests if unit tests have failed. The point is to be able to run unit tests and integration tests independently of each other.

Once use case here would be a build pipeline: the first stage compiles and unit tests, and if that succeeds, passes the results to the next stage. The second stage would run the integration tests, it does not need to run the unit tests because we know they already succeeded in the previous stage.

Another use case would be if a developer is writing integration tests, there&#039;s only need to run the new integration tests, not to run the unit tests.]]></description>
		<content:encoded><![CDATA[<p>&#8220;Unit tests should be very fast to run, and if any of them fail there is probably a bug you should fix before running the integration tests even makes sense&#8221;</p>
<p>Yes I agree 100%.</p>
<p>&#8220;Not sure I see the point in running integration tests if unit tests have failed&#8221;</p>
<p>I don&#8217;t think the point is to run integration tests if unit tests have failed. The point is to be able to run unit tests and integration tests independently of each other.</p>
<p>Once use case here would be a build pipeline: the first stage compiles and unit tests, and if that succeeds, passes the results to the next stage. The second stage would run the integration tests, it does not need to run the unit tests because we know they already succeeded in the previous stage.</p>
<p>Another use case would be if a developer is writing integration tests, there&#8217;s only need to run the new integration tests, not to run the unit tests.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Mobi PetStore: A New Blog Series on Building Mobile Apps &#124; Genuitec Blog</title>
		<link>http://antoniogoncalves.org/about/#comment-2286</link>
		<dc:creator><![CDATA[Mobi PetStore: A New Blog Series on Building Mobile Apps &#124; Genuitec Blog]]></dc:creator>
		<pubDate>Tue, 23 Apr 2013 18:15:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-2286</guid>
		<description><![CDATA[[...] The Petstore application was developed by Sun (now Oracle) and first appeared in 2000 as a  demonstration of key Java enterprise technologies and design patterns. (Many of us old enough to remember it will recall those painful days of suffering with EJB1.) It was updated around 2007 to use the latest JavaEE 5 technologies of that time. If you Google for the app, you will find it is no longer supported by Oracle. For this article we are using a new implementation of Petstore named Yet Another Petstore (YAP) from Antonio Gonclaves. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] The Petstore application was developed by Sun (now Oracle) and first appeared in 2000 as a  demonstration of key Java enterprise technologies and design patterns. (Many of us old enough to remember it will recall those painful days of suffering with EJB1.) It was updated around 2007 to use the latest JavaEE 5 technologies of that time. If you Google for the app, you will find it is no longer supported by Oracle. For this article we are using a new implementation of Petstore named Yet Another Petstore (YAP) from Antonio Gonclaves. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yet Another Petstore ! by Mobi PetStore: A New Blog Series on Building Mobile Apps &#124; Genuitec Blog</title>
		<link>http://antoniogoncalves.org/2012/06/25/yet-another-petstore/#comment-2285</link>
		<dc:creator><![CDATA[Mobi PetStore: A New Blog Series on Building Mobile Apps &#124; Genuitec Blog]]></dc:creator>
		<pubDate>Tue, 23 Apr 2013 17:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://antoniogoncalves.org/?p=1783#comment-2285</guid>
		<description><![CDATA[[...] no longer supported by Oracle. For this article we are using a new implementation of Petstore named Yet Another Petstore (YAP) from Antonio [...]]]></description>
		<content:encoded><![CDATA[<p>[...] no longer supported by Oracle. For this article we are using a new implementation of Petstore named Yet Another Petstore (YAP) from Antonio [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Let&#8217;s Turn Integration Tests with Maven to a First-Class Citizen by Torleif Berger (@svish)</title>
		<link>http://antoniogoncalves.org/2012/12/13/lets-turn-integration-tests-with-maven-to-a-first-class-citizen/#comment-2284</link>
		<dc:creator><![CDATA[Torleif Berger (@svish)]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 12:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://antoniogoncalves.org/?p=1949#comment-2284</guid>
		<description><![CDATA[Not sure I see the point in running integration tests if unit tests have failed... Unit tests should be very fast to run, and if any of them fail there is probably a bug you should fix before running the integration tests even makes sense.]]></description>
		<content:encoded><![CDATA[<p>Not sure I see the point in running integration tests if unit tests have failed&#8230; Unit tests should be very fast to run, and if any of them fail there is probably a bug you should fix before running the integration tests even makes sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Injection with CDI (Part III) by bala</title>
		<link>http://antoniogoncalves.org/2011/09/25/injection-with-cdi-part-iii/#comment-2282</link>
		<dc:creator><![CDATA[bala]]></dc:creator>
		<pubDate>Fri, 19 Apr 2013 13:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://agoncal.wordpress.com/?p=1139#comment-2282</guid>
		<description><![CDATA[Hi,

great blog with great articles.
However I&#039;m a bit confused:

First you wrote:
@Produces @Order @Resource(name = &quot;jms/OrderConnectionFactory&quot;)
    private QueueConnectionFactory orderConnectionFactory;

Then in your next step:
 @Resource(name = &quot;jms/OrderConnectionFactory&quot;)
    private QueueConnectionFactory orderConnectionFactory;

An here comes my question:
Why doesn&#039;t we need in the second case the two annotation(@Produces @Order )?

Maybe i missed something.

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>great blog with great articles.<br />
However I&#8217;m a bit confused:</p>
<p>First you wrote:<br />
@Produces @Order @Resource(name = &#8220;jms/OrderConnectionFactory&#8221;)<br />
    private QueueConnectionFactory orderConnectionFactory;</p>
<p>Then in your next step:<br />
 @Resource(name = &#8220;jms/OrderConnectionFactory&#8221;)<br />
    private QueueConnectionFactory orderConnectionFactory;</p>
<p>An here comes my question:<br />
Why doesn&#8217;t we need in the second case the two annotation(@Produces @Order )?</p>
<p>Maybe i missed something.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Test your JAX-RS 2.0 Web Service URIs&#8230; Without Mocks by Johan</title>
		<link>http://antoniogoncalves.org/2012/12/19/test-your-jax-rs-2-0-web-service-uris-without-mocks/#comment-2272</link>
		<dc:creator><![CDATA[Johan]]></dc:creator>
		<pubDate>Fri, 05 Apr 2013 21:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://antoniogoncalves.org/?p=1916#comment-2272</guid>
		<description><![CDATA[Hi, 

Just wanted to point out that REST Assured is actually not a &quot;mock framework&quot; of any kind but is used for end-to-end testing of REST/HTTP services just like the examples that you provide.]]></description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Just wanted to point out that REST Assured is actually not a &#8220;mock framework&#8221; of any kind but is used for end-to-end testing of REST/HTTP services just like the examples that you provide.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Because I always forget how to use maven-ear-plugin by Pankaj</title>
		<link>http://antoniogoncalves.org/2009/10/23/because-i-always-forget-how-to-use-maven-ear-plugin/#comment-2236</link>
		<dc:creator><![CDATA[Pankaj]]></dc:creator>
		<pubDate>Mon, 04 Mar 2013 13:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://agoncal.wordpress.com/?p=478#comment-2236</guid>
		<description><![CDATA[Hi having a doubt regarding the assembly of ear . The ear-plugin hs been properly used in the project I two queries . The application.xml is not present in the src/main/application/META-INF/ . Just MANIFEST.MF is there . 
But once the I compile the project this file is created .
second thing is that though the compilation got successful if I try to run mvn -e install it does not copies the ear to local repository and build failes with 
Failed to retrieve numeric file attributes using: &#039;/bin/sh -c ls -1nlad

Please advise]]></description>
		<content:encoded><![CDATA[<p>Hi having a doubt regarding the assembly of ear . The ear-plugin hs been properly used in the project I two queries . The application.xml is not present in the src/main/application/META-INF/ . Just MANIFEST.MF is there .<br />
But once the I compile the project this file is created .<br />
second thing is that though the compilation got successful if I try to run mvn -e install it does not copies the ear to local repository and build failes with<br />
Failed to retrieve numeric file attributes using: &#8216;/bin/sh -c ls -1nlad</p>
<p>Please advise</p>
]]></content:encoded>
	</item>
</channel>
</rss>