<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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/"
	>

<channel>
	<title>Just do it!</title>
	<link>http://www.dienai.3x.ro</link>
	<description>Just another weblog</description>
	<pubDate>Fri, 24 May 2024 14:48:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Bitcoin</title>
		<link>http://www.dienai.3x.ro/2024/05/24/bitcoin/</link>
		<comments>http://www.dienai.3x.ro/2024/05/24/bitcoin/#comments</comments>
		<pubDate>Fri, 24 May 2024 14:48:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.dienai.3x.ro/?p=9</guid>
		<description><![CDATA[Buy Bitcoin, send it in cold storage, thank me later!
]]></description>
			<content:encoded><![CDATA[<p>Buy Bitcoin, send it in cold storage, thank me later!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2024/05/24/bitcoin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Specifying suite in maven for testng</title>
		<link>http://www.dienai.3x.ro/2012/07/26/specifying-suite-in-maven-for-testng/</link>
		<comments>http://www.dienai.3x.ro/2012/07/26/specifying-suite-in-maven-for-testng/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 08:47:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.dienai.3x.ro/?p=8</guid>
		<description><![CDATA[Using Suite XML Files
Another alternative is to use TestNG suite XML files. This allows flexible configuration of the tests to be run. These files are created in the normal way, and then added to the Surefire Plugin configuration:
In the previously created pom.xml file, you can replace the plugin section with this one, and now instead [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Using Suite XML Files</strong></p>
<p>Another alternative is to use TestNG suite XML files. This allows flexible configuration of the tests to be run. These files are created in the normal way, and then added to the Surefire Plugin configuration:<br />
In the previously created pom.xml file, you can replace the plugin section with this one, and now instead of running all the tests, you can specify which of them should be run using a testng suite file (in this case called testng.xml).</p>
<p><code>      &lt;plugin&gt;<br />
        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;<br />
        &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;<br />
        &lt;version&gt;2.12&lt;/version&gt;<br />
        &lt;configuration&gt;<br />
          &lt;suiteXmlFiles&gt;<br />
            &lt;suiteXmlFile&gt;testng.xml&lt;/suiteXmlFile&gt;<br />
          &lt;/suiteXmlFiles&gt;<br />
        &lt;/configuration&gt;<br />
      &lt;/plugin&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2012/07/26/specifying-suite-in-maven-for-testng/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use the testng with maven, adding dependecy to pom.xml</title>
		<link>http://www.dienai.3x.ro/2012/07/26/how-to-use-the-testng-with-maven-adding-dependecy-to-pomxml/</link>
		<comments>http://www.dienai.3x.ro/2012/07/26/how-to-use-the-testng-with-maven-adding-dependecy-to-pomxml/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 07:58:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[IT]]></category>

		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.dienai.3x.ro/?p=7</guid>
		<description><![CDATA[To run your tests created with TestNG, Just create a file called pom.xml and add the following code:
This is tested and it works (I removed parts of dependecies from my pom.xml, but it should still work).

&#60;project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
        [...]]]></description>
			<content:encoded><![CDATA[<p>To run your tests created with TestNG, Just create a file called pom.xml and add the following code:<br />
This is tested and it works (I removed parts of dependecies from my pom.xml, but it should still work).<br />
<code><br />
&lt;project xmlns="http://maven.apache.org/POM/4.0.0"<br />
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"<br />
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0<br />
           http://maven.apache.org/maven-v4_0_0.xsd"&gt;<br />
  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;<br />
  &lt;groupId&gt;YOUR.GROUP.ID&lt;/groupId&gt;<br />
  &lt;artifactId&gt;YOUR.ARTIFACT.ID&lt;/artifactId&gt;<br />
  &lt;packaging&gt;jar&lt;/packaging&gt;<br />
  &lt;version&gt;YOUR.VERSION.NUMBER&lt;/version&gt;<br />
  &lt;name&gt;YOUR.PROJECT.NAME&lt;/name&gt;<br />
  &lt;build&gt;<br />
    &lt;plugins&gt;<br />
      &lt;plugin&gt;<br />
        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;<br />
        &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;<br />
        &lt;configuration&gt;<br />
          &lt;source&gt;1.5&lt;/source&gt;<br />
          &lt;target&gt;1.5&lt;/target&gt;<br />
        &lt;/configuration&gt;<br />
      &lt;/plugin&gt;<br />
    &lt;/plugins&gt;<br />
    &lt;!--testSourceDirectory&gt;OPTIONAL-YOUR_TESTS_PATH&lt;/testSourceDirectory--&gt;<br />
  &lt;/build&gt;<br />
  &lt;dependencies&gt;<br />
    &lt;dependency&gt;<br />
		&lt;groupId&gt;org.testng&lt;/groupId&gt;<br />
		&lt;artifactId&gt;testng&lt;/artifactId&gt;<br />
		&lt;version&gt;5.10&lt;/version&gt;<br />
		&lt;classifier&gt;jdk15&lt;/classifier&gt;<br />
		&lt;scope&gt;test&lt;/scope&gt;<br />
    &lt;/dependency&gt;<br />
  &lt;/dependencies&gt;<br />
&lt;/project&gt;<br />
</code></p>
<p>Just replace the &#8220;YOUR.*&#8221; with your specific values and you&#8217;re done.<br />
All you have to do is to place this pom.xml file in the root of the test project and run &#8220;mvn test&#8221;.<br />
By default, the tests should be located in: ./src/test/java/ folder relative to the project root.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2012/07/26/how-to-use-the-testng-with-maven-adding-dependecy-to-pomxml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>eMag latest offers</title>
		<link>http://www.dienai.3x.ro/2012/06/27/emag-latest-offers/</link>
		<comments>http://www.dienai.3x.ro/2012/06/27/emag-latest-offers/#comments</comments>
		<pubDate>Tue, 26 Jun 2012 22:19:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.dienai.3x.ro/?p=6</guid>
		<description><![CDATA[http://profitshare.emag.ro/get_ads.php?zone_id=94301
]]></description>
			<content:encoded><![CDATA[<p><a href="http://profitshare.emag.ro/get_ads.php?zone_id=94301">http://profitshare.emag.ro/get_ads.php?zone_id=94301</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2012/06/27/emag-latest-offers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>google adsense</title>
		<link>http://www.dienai.3x.ro/2008/06/25/google-adsense/</link>
		<comments>http://www.dienai.3x.ro/2008/06/25/google-adsense/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 11:46:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dienai.3x.ro/2008/06/25/google-adsense/</guid>
		<description><![CDATA[Tocmai m-am inscris in programul google adsense, si o sa incerc sa scot ceva $ de pe urma lui.
Momentan stiu numai chestii basic, insa pe masura ce voi experimenta va pot ajuta si pe voi in caz de nevoie.
]]></description>
			<content:encoded><![CDATA[<p>Tocmai m-am inscris in programul google adsense, si o sa incerc sa scot ceva $ de pe urma lui.<br />
Momentan stiu numai chestii basic, insa pe masura ce voi experimenta va pot ajuta si pe voi in caz de nevoie.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2008/06/25/google-adsense/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Afacere online&#8230;</title>
		<link>http://www.dienai.3x.ro/2008/06/24/afacere-online/</link>
		<comments>http://www.dienai.3x.ro/2008/06/24/afacere-online/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 13:43:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dienai.3x.ro/?p=4</guid>
		<description><![CDATA[De ceva vreme ma tot creieresc (impreuna cu 2 prieteni) despre cum sa facem ceva bani.
Propunerea mea a fost sa facem o afacere on-line, fiind cel mai la indemana, toti 3 fiind absolventi IT (Mate-Info).
S-a mai propus crearea unui joc 3D. Care din perspectiva mea necesita mult mai multa munca (eu am lucrat putin si [...]]]></description>
			<content:encoded><![CDATA[<p>De ceva vreme ma tot creieresc (impreuna cu 2 prieteni) despre cum sa facem ceva bani.<br />
Propunerea mea a fost sa facem o afacere on-line, fiind cel mai la indemana, toti 3 fiind absolventi IT (Mate-Info).<br />
S-a mai propus crearea unui joc 3D. Care din perspectiva mea necesita mult mai multa munca (eu am lucrat putin si cu OpenGL)<br />
Nu e mai usor de facut un joc online?<br />
Orice fel, caci la cate au aparut pe piata, sigur mai e loc de unul.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2008/06/24/afacere-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Romania, tara de CACAO</title>
		<link>http://www.dienai.3x.ro/2008/03/28/romania-tara-de-cacao/</link>
		<comments>http://www.dienai.3x.ro/2008/03/28/romania-tara-de-cacao/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 22:04:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dienai.3x.ro/?p=3</guid>
		<description><![CDATA[TRAIM INTR-O TARA DE RAHAT!!! COLOANA OFICIALA A LUI TARICEANU
A FACUT ASTAZI INDIRECT O VICTIMA UMANA. O TANARA A FOST ACCIDENTATA
MORTAL PE KISELEFF SI NICIUNUL DINTRE POLITISTII AFLATI DE FATA NU A REACTIONAT
IN NICI UN FEL DEOARECE ERAU PREOCUPATI CU DIRIJATUL CIRCULATIEI
IN ASTEPTAREA MAGARULUI CARE DE ALTFEL POATE UMBLA SI PE SCUTER SI FARA
ESCORTA. RUSINEEEEE! [...]]]></description>
			<content:encoded><![CDATA[<p>TRAIM INTR-O TARA DE RAHAT!!! COLOANA OFICIALA A LUI TARICEANU<br />
A FACUT ASTAZI INDIRECT O VICTIMA UMANA. O TANARA A FOST ACCIDENTATA<br />
MORTAL PE KISELEFF SI NICIUNUL DINTRE POLITISTII AFLATI DE FATA NU A REACTIONAT<br />
IN NICI UN FEL DEOARECE ERAU PREOCUPATI CU DIRIJATUL CIRCULATIEI<br />
IN ASTEPTAREA MAGARULUI CARE DE ALTFEL POATE UMBLA SI PE SCUTER SI FARA<br />
ESCORTA. RUSINEEEEE! TARICENE LASA-NE!!! http://www.youtube.com/watch?v=nQ6qDQUVNdw</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2008/03/28/romania-tara-de-cacao/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.dienai.3x.ro/2007/04/06/hello-world/</link>
		<comments>http://www.dienai.3x.ro/2007/04/06/hello-world/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 20:28:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Aici o sa incep sa ma desfasor&#8230; cum vine vorba.
O sa mearga mai greu ca abia ma obisnuiesc cu Wordpres
]]></description>
			<content:encoded><![CDATA[<p>Aici o sa incep sa ma desfasor&#8230; cum vine vorba.<br />
O sa mearga mai greu ca abia ma obisnuiesc cu Wordpres</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dienai.3x.ro/2007/04/06/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
