<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="https://nozaki.me/roller/roller-ui/styles/rss.xsl" media="screen"?><rss version="2.0" 
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
  <title>Kohei Nozaki&apos;s blog (Comments)</title>
  <link>https://nozaki.me/roller/kyle/</link>
  <atom:link rel="self" type="application/rss+xml" href="https://nozaki.me/roller/kyle/feed/comments/rss" />
  <description>Notes of my experiments</description>
  <language>en-us</language>
  <copyright>Copyright 2024</copyright>
  <lastBuildDate>Wed, 1 May 2024 08:28:13 +0000</lastBuildDate>
  <generator>Apache Roller 5.2.0</generator>
          <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/customizing-roller-s-gaurav-theme#comment-1619929744030</guid>
        <title>Re: Customizing Roller&apos;s Gaurav theme</title>
        <dc:creator>mjordan79</dc:creator>
        <pubDate>Sun, 2 May 2021 04:29:04 +0000</pubDate>
        <description>
&lt;p&gt;Hello, how do you make those wonderful wraps around the code and these styled paragraphs?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1597370500670</guid>
        <title>Re: Lean example of Tomcat 8 + Guice 4 + Jersey 2.19</title>
        <dc:creator>Patrick</dc:creator>
        <pubDate>Fri, 14 Aug 2020 02:01:40 +0000</pubDate>
        <description>
&lt;p&gt;I&apos;ve been stressing over getting a Jersey webapp spun up, and your project finally got me where I wanted to be.&lt;/p&gt;


&lt;p&gt;The only problem I had was that I was getting NoClassDefFoundError: javax/xml/bind/JAXBException.  It turns out that it&apos;s because I&apos;m using Java 11, which seems to have removed necessary modules for JAX-B.&lt;/p&gt;


&lt;p&gt;I found the fix here: &lt;a href=&quot;https://stackoverflow.com/a/43574427&quot;&gt;https://stackoverflow.com/a/43574427&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;So, if you&apos;d like to update your code to be compatible with Java 11, simply add these two dependencies:&lt;/p&gt;


&lt;p&gt;&amp;lt;!-- API, java.xml.bind module --&amp;gt;&lt;br/&gt;
&amp;lt;dependency&amp;gt;&lt;br/&gt;
    &amp;lt;groupId&amp;gt;jakarta.xml.bind&amp;lt;/groupId&amp;gt;&lt;br/&gt;
    &amp;lt;artifactId&amp;gt;jakarta.xml.bind-api&amp;lt;/artifactId&amp;gt;&lt;br/&gt;
    &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;&lt;br/&gt;
&amp;lt;/dependency&amp;gt;&lt;/p&gt;


&lt;p&gt;&amp;lt;!-- Runtime, com.sun.xml.bind module --&amp;gt;&lt;br/&gt;
&amp;lt;dependency&amp;gt;&lt;br/&gt;
    &amp;lt;groupId&amp;gt;org.glassfish.jaxb&amp;lt;/groupId&amp;gt;&lt;br/&gt;
    &amp;lt;artifactId&amp;gt;jaxb-runtime&amp;lt;/artifactId&amp;gt;&lt;br/&gt;
    &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;&lt;br/&gt;
&amp;lt;/dependency&amp;gt;&lt;/p&gt;


&lt;p&gt;Again, thanks so much!&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-8#comment-1587430335332</guid>
        <title>Re: Lean example of Tomcat 8 + Guice 4</title>
        <dc:creator>Fred</dc:creator>
        <pubDate>Tue, 21 Apr 2020 00:52:15 +0000</pubDate>
        <description>
&lt;p&gt;This is an excellent bare-bones example showing the base &amp;quot;root level&amp;quot; mapping which seems to work ok, but there is a quirky difference between web.xml&apos;s filter-mapping/url-pattern behavior and the GuiceServletContextListener&apos;s serve(urlPattern) behavior for non-root-level paths.  The JEE pattern matches more actual urls.  For example, if the url-pattern were &amp;quot;/someresource/*&amp;quot; it would match &amp;quot;/myresource/metadata&amp;quot; and &amp;quot;/myresource?param1=2&amp;quot; and even &amp;quot;/myresource&amp;quot; but serve(&amp;quot;/myresource/*&amp;quot;) won&apos;t match all of those, and serve(&amp;quot;/myresource&amp;quot;) won&apos;t either.  You would need to serve() both patterns to get the same coverage.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1578901398704</guid>
        <title>Re: Configuring automatic push by successfully build</title>
        <dc:creator>SANJEEV PRAJAPATI</dc:creator>
        <pubDate>Mon, 13 Jan 2020 07:43:18 +0000</pubDate>
        <description>
&lt;p&gt;Let See we are working on Multi pipeline project for CI-CD for one project we are using multiple repository. &lt;br/&gt;
Example : we have &lt;br/&gt;
		1. one repository having data &apos;a&apos; in A repository. its also store the Jenkins command.&lt;br/&gt;
		2. second for some data &apos;b&apos;, store in B repository.&lt;br/&gt;
		I am performing some addition between &apos;a&apos; (A) and &apos;b&apos; (B) let se output is &apos;c&apos; .&lt;br/&gt;
		now I wanted to push the expected output &apos;c&apos; to the different repository C.&lt;/p&gt;


&lt;p&gt;		In (C) repository I already have some data. I don&apos;t want to create bare repository.&lt;/p&gt;


&lt;p&gt;		the error i was facing is&lt;br/&gt;
		/jenkins/workspace/A@tmp/durable-ssasd/script.sh: 5: /jenkins/workspace/A@tmp/durable-ssasd/script.sh: git: not found&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/in-container-jms-consumer-producer#comment-1574103228718</guid>
        <title>Re: In-container JMS consumer/producer example</title>
        <dc:creator>thurman</dc:creator>
        <pubDate>Mon, 18 Nov 2019 18:53:48 +0000</pubDate>
        <description>
&lt;p&gt;Agreed...after fighting with quickstarts stuff for days I was literally able to get this to work 15 mins...thanks a ton&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1573537721042</guid>
        <title>Re: Configuring automatic push by successfully build</title>
        <dc:creator>Madhu</dc:creator>
        <pubDate>Tue, 12 Nov 2019 05:48:41 +0000</pubDate>
        <description>
&lt;p&gt;Hi,&lt;/p&gt;


&lt;p&gt;can you please help me to provide the process steps to publish the artifacts into GitHub server using Jenkins git publisher, Actually i am trying to push the artifacts into Azure local git not sure how to do it.&lt;br/&gt;
What would be the Target remote name? and where the git publisher will get the portal login details?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1562764787370</guid>
        <title>Re: Configuring automatic push by successfully build</title>
        <dc:creator>Tom</dc:creator>
        <pubDate>Wed, 10 Jul 2019 13:19:47 +0000</pubDate>
        <description>
&lt;p&gt;Git publisher is not present in Jenkins v.2.176.1 or the git plugin v.3.10.1&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/how-to-configure-wildfly-to#comment-1554859808713</guid>
        <title>Re: How to configure WildFly to use secure session cookie and httpOnly</title>
        <dc:creator>Robert Benkovitz</dc:creator>
        <pubDate>Wed, 10 Apr 2019 01:30:08 +0000</pubDate>
        <description>
&lt;p&gt;In Wildfly 10.1, this no longer seems to be an option - &amp;quot;session-cookie&amp;quot; no longer exists as a value for &amp;quot;setting&amp;quot; - any other way to do it?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/using-jpa-2-1-attributeconverter#comment-1539901274776</guid>
        <title>Re: Using JPA 2.1 AttributeConverter against Java8 LocalDate / LocalDateTime</title>
        <dc:creator>Kohei</dc:creator>
        <pubDate>Thu, 18 Oct 2018 22:21:14 +0000</pubDate>
        <description>
&lt;p&gt;Hi Gourav, one possibility is that if you use SE environment you need to declare the converter into persistence.xml. Like this &lt;a href=&quot;https://stackoverflow.com/questions/27574855/registering-converters-in-jpa-2-1-with-eclipselink&quot;&gt;https://stackoverflow.com/questions/27574855/registering-converters-in-jpa-2-1-with-eclipselink&lt;/a&gt; hope this helps&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/using-jpa-2-1-attributeconverter#comment-1539869643205</guid>
        <title>Re: Using JPA 2.1 AttributeConverter against Java8 LocalDate / LocalDateTime</title>
        <dc:creator>Gourav kumar</dc:creator>
        <pubDate>Thu, 18 Oct 2018 13:34:03 +0000</pubDate>
        <description>
&lt;p&gt;Can you tell me one thing, if i m using autoApply in @Convert in hibernate 4.3.1 version not working. Their is any reason?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/configuring-james-to-sign-dkim#comment-1537565417758</guid>
        <title>Re: Configuring James to sign DKIM for outbound mails</title>
        <dc:creator>AC</dc:creator>
        <pubDate>Fri, 21 Sep 2018 21:30:17 +0000</pubDate>
        <description>
&lt;p&gt;Nevermind.  I was able to get around the problem using the override suggestion found here:&lt;br/&gt;
 &lt;a href=&quot;https://stackoverflow.com/questions/3937195/maven-how-to-override-the-dependency-added-by-a-library&quot;&gt;https://stackoverflow.com/questions/3937195/maven-how-to-override-the-dependency-added-by-a-library&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/configuring-james-to-sign-dkim#comment-1537533850314</guid>
        <title>Re: Configuring James to sign DKIM for outbound mails</title>
        <dc:creator>AC</dc:creator>
        <pubDate>Fri, 21 Sep 2018 12:44:10 +0000</pubDate>
        <description>
&lt;p&gt;When I try to compile with &amp;quot;mvn clean install&amp;quot; I get:&lt;/p&gt;


&lt;p&gt;Failed to collect dependencies at org.apache.james:apache-mailet-base:jar:2.5.1-SNAPSHOT&lt;/p&gt;


&lt;p&gt;But I can&apos;t locate version 2.5.1 of mailet base.  Do you know where I can get it?&lt;/p&gt;


&lt;p&gt;Thanks.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/jukito-integration-with-jpa-and#comment-1534656512877</guid>
        <title>Re: Jukito integration with JPA and guice-persist</title>
        <dc:creator>chankane</dc:creator>
        <pubDate>Sun, 19 Aug 2018 05:28:32 +0000</pubDate>
        <description>
&lt;p&gt;失礼いたします．記事を読んでいて疑問が浮かんだので質問させてくださいませ．&lt;/p&gt;


&lt;p&gt;EmployeeServiceTestクラスから Entitymanager を取り除き，さらに&lt;br/&gt;
@Test&lt;br/&gt;
@Transactional&lt;br/&gt;
public void findAllNamesShouldReturnExpectedResult() ...&lt;br/&gt;
とすることは可能でしょうか？&lt;/p&gt;


&lt;p&gt;まとめると，&lt;br/&gt;
ビジネスロジックからEntityManagerを切り離す AND ビジネスロジックでトランザクション処理を行うことは可能でしょうか？&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/testing-guice-persist-nested-transactional#comment-1533556993412</guid>
        <title>Re: Testing guice-persist nested @Transactional behavior</title>
        <dc:creator>hallel</dc:creator>
        <pubDate>Mon, 6 Aug 2018 12:03:13 +0000</pubDate>
        <description>
&lt;p&gt;thanks alot!&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-ejb-apex#comment-1532523741720</guid>
        <title>Re: Avoiding EJBException wrapping</title>
        <dc:creator>Given</dc:creator>
        <pubDate>Wed, 25 Jul 2018 13:02:21 +0000</pubDate>
        <description>
&lt;p&gt;Thanks a lot. You helped me save a lot of time :)&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-jenkins-sshdeploy#comment-1532007712825</guid>
        <title>Re: Deploying with Jenkins Publish Over SSH Plugin</title>
        <dc:creator>Nagendra</dc:creator>
        <pubDate>Thu, 19 Jul 2018 13:41:52 +0000</pubDate>
        <description>
&lt;p&gt;can pls tell me the how to deploy the php applications by using SSH plugin in jenkins CI...I was configured but what are the credintials we need to give  the in build envoronment&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/using-multiple-instances-of-wildfly#comment-1529671844462</guid>
        <title>Re: Using multiple instances of WildFly on shared home directory</title>
        <dc:creator>Kohei</dc:creator>
        <pubDate>Fri, 22 Jun 2018 12:50:44 +0000</pubDate>
        <description>
&lt;p&gt;Hi Viny,&lt;/p&gt;


&lt;p&gt;I have never used this on a production environment. I used this approach just for development use on my laptop. Technically it should be fine, but I wouldn&amp;rsquo;t recommend you to do that in a production environment.&lt;/p&gt;


&lt;p&gt;I recommend you to deploy your apps to one WildFly instance.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/using-multiple-instances-of-wildfly#comment-1529606237464</guid>
        <title>Re: Using multiple instances of WildFly on shared home directory</title>
        <dc:creator>Viny Machado</dc:creator>
        <pubDate>Thu, 21 Jun 2018 18:37:17 +0000</pubDate>
        <description>
&lt;p&gt;Hello,&lt;br/&gt;
I know this post is old but I&apos;d like to read your thoughts on that. Is this a valid approach for a production enviroment? I mean, I usually work with one wildfly instance per host for just one app. But because of hardware limitations I have to use the same host for several apps. Do you think your approach is viable for that? Have you ever used on production something like this?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1519261906734</guid>
        <title>Re: Lean example of Tomcat 8 + Guice 4 + Jersey 2.19</title>
        <dc:creator>Kohei</dc:creator>
        <pubDate>Thu, 22 Feb 2018 01:11:46 +0000</pubDate>
        <description>
&lt;p&gt;Hi Teodor, I have no wonder that my example doesn&amp;rsquo;t work on a full fledged Java EE container (GlassFish) because it has its own JAX-RS and CDI implementations out of box. I recommend you not to use Guice and Jersey this way but to use its out of box implementations.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1519250749002</guid>
        <title>Re: Lean example of Tomcat 8 + Guice 4 + Jersey 2.19</title>
        <dc:creator>Teodor</dc:creator>
        <pubDate>Wed, 21 Feb 2018 22:05:49 +0000</pubDate>
        <description>
&lt;p&gt;Hi,&lt;/p&gt;


&lt;p&gt;Why doesn&apos;t work on glassfish 4 or 5?&lt;br/&gt;
I tried to deploy .war on glassfish server but doesn&apos;t work.&lt;br/&gt;
This is the error:&lt;/p&gt;


&lt;p&gt;Error occurred during deployment: Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: javax.servlet.ServletException: com.sun.enterprise.container.common.spi.util.InjectionException: Error creating managed object for class: class guice.tomcat.MyJerseyGuiceServletContextListener. Please see server.log for more details.&lt;/p&gt;


&lt;p&gt;Have you any idea?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/configuring-james-to-use-ssl#comment-1516385746643</guid>
        <title>Re: Configuring James to use SSL</title>
        <dc:creator>Matthew Delaney</dc:creator>
        <pubDate>Fri, 19 Jan 2018 18:15:46 +0000</pubDate>
        <description>
&lt;p&gt;Why is it that we need a separate smtp server for SSL connections? Why not just have one that supports it?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/jpa-builder-pattern#comment-1515061545200</guid>
        <title>Re: JPA Builder Pattern</title>
        <dc:creator>yun</dc:creator>
        <pubDate>Thu, 4 Jan 2018 10:25:45 +0000</pubDate>
        <description>
&lt;p&gt;Why did you implement the service class in the domain class instead of building the builder?&lt;/p&gt;


&lt;p&gt;Is it because the domain class is not a singleton?&lt;/p&gt;


&lt;p&gt;I wonder why you have implemented it in the service class.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/in-container-jms-consumer-producer#comment-1514800163196</guid>
        <title>Re: In-container JMS consumer/producer example</title>
        <dc:creator>Joan Killeen</dc:creator>
        <pubDate>Mon, 1 Jan 2018 09:49:23 +0000</pubDate>
        <description>
&lt;p&gt;You really could not have made this simpler to follow. This is extremely well written and and most helpful in my hour of need :-)&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-test-wiremockunstable#comment-1512418702004</guid>
        <title>Re: Mocking a unstable HTTP server with WireMock</title>
        <dc:creator>Akhil Vashisht</dc:creator>
        <pubDate>Mon, 4 Dec 2017 20:18:22 +0000</pubDate>
        <description>
&lt;p&gt;Hi,&lt;/p&gt;


&lt;p&gt;First of all thanks for the useful post. Actually i am also trying to achieve the similar scenario where first two times retry error will be thrown and taking reference from this post i have create my own file with some changes(where I am not using JUNITs and my changes is for JAVA Usage)  but now the problem is it is working fine if single server/instance/browsers/thread is accessing it but if there are multiple servers/thread its not working as expected.&lt;br/&gt;
As in wiremock the state is changing. So suppose first customer tries the first retry and second customer comes in the middle then there is mismatch. In short my question is how to make it synchronized or multi thread safe?&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/managing-multiple-jpa-persistence-units#comment-1511821616713</guid>
        <title>Re: Managing multiple JPA persistence units with guice-persist</title>
        <dc:creator>anor1k</dc:creator>
        <pubDate>Mon, 27 Nov 2017 22:26:56 +0000</pubDate>
        <description>
&lt;p&gt;While this solves for multiple persistence unit, can we have these units in different jars? &lt;/p&gt;


&lt;p&gt;I want to store common daos in a different jar. The idea is to store separate persistence.xml files. The modules entities specified in its own file and allow it to inherit other entities via dependencies.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1511396960782</guid>
        <title>Re: How to send Email at every build with Jenkins</title>
        <dc:creator>Kohei</dc:creator>
        <pubDate>Thu, 23 Nov 2017 00:29:20 +0000</pubDate>
        <description>
&lt;p&gt;@ashu @kk I think checking debug output of JavaMail would help. Try setting the system property mail.debug=true and checking Jenkins log. FYI: &lt;a href=&quot;http://jenkins-ci.361315.n4.nabble.com/JIRA-JENKINS-16746-Unable-to-send-email-since-Jenkins-1-500-td4655056.html&quot;&gt;http://jenkins-ci.361315.n4.nabble.com/JIRA-JENKINS-16746-Unable-to-send-email-since-Jenkins-1-500-td4655056.html&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1511374384128</guid>
        <title>Re: How to send Email at every build with Jenkins</title>
        <dc:creator>kk</dc:creator>
        <pubDate>Wed, 22 Nov 2017 18:13:04 +0000</pubDate>
        <description>
&lt;p&gt;@Kohei Nozaki - I am also facing same issue. please help me on this.&lt;/p&gt;


&lt;p&gt;channel stopped&lt;br/&gt;
Email was triggered for: Always&lt;br/&gt;
Sending email for trigger: Always&lt;br/&gt;
Sending email to: kyle@example.com&lt;br/&gt;
Finished: SUCCESS&lt;/p&gt;


&lt;p&gt;But I m not getting mail.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/setting-up-apache-james-mail#comment-1508432834906</guid>
        <title>Re: Setting up Apache James mail server</title>
        <dc:creator>klarson</dc:creator>
        <pubDate>Thu, 19 Oct 2017 17:07:14 +0000</pubDate>
        <description>
&lt;p&gt;Awesome information! Thank you for posting this!&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1507036291765</guid>
        <title>Re: How to send Email at every build with Jenkins</title>
        <dc:creator>ashu</dc:creator>
        <pubDate>Tue, 3 Oct 2017 13:11:31 +0000</pubDate>
        <description>
&lt;p&gt;@Kohei Nozaki - As per your blog I am getting below output  - &lt;/p&gt;


&lt;p&gt;channel stopped&lt;br/&gt;
Email was triggered for: Always&lt;br/&gt;
Sending email for trigger: Always&lt;br/&gt;
Sending email to: kyle@example.com&lt;br/&gt;
Finished: SUCCESS&lt;/p&gt;


&lt;p&gt;But I m not getting mail.&lt;/p&gt;

</description>
    </item>
        <item>
        <guid isPermaLink="true">https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1506965926386</guid>
        <title>Re: How to send Email at every build with Jenkins</title>
        <dc:creator>jagan</dc:creator>
        <pubDate>Mon, 2 Oct 2017 17:38:46 +0000</pubDate>
        <description>
&lt;p&gt;HI ,&lt;br/&gt;
How can i send coverage results as notification of email body not attachment or link.. we receive coverage roprts as an email message in body of email notification&lt;/p&gt;

</description>
    </item>
    </channel>
</rss>