jump to navigation

Useful Firefox Plugins February 18, 2008

Posted by Mayank in Uncategorized.
Tags:
add a comment

Howto: Uninstall Powershell 1.0 February 16, 2008

Posted by Mayank in powershell.
Tags: ,
15 comments

When you try to install Powershell 2.0, you are prompted to uninstall other versions of Powershells before going ahead with the installation. But neither does powershell appear in Add/Remove programs nor is there an uninstall shortcut in the programs menu.

To uninstall powershell 1.0 run add/remove programs (appwiz.cpl from Win+R) and click the “show updates” checkbox. Powershell will now be shown. It can be removed by clicking on remove :-) .

Enjoyyy!!!

Maven <classifier> tag February 16, 2008

Posted by Mayank in maven.
Tags: , , , ,
add a comment

Maven has a <classifier> tag which helps in locating artifacts in the repo with a further level of granularity.

Hence, if you were using testng 5.7 for jdk1.5 your pom would look like this:

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.7</version>
<classifier>jdk15</classifier>
<scope>test</scope>
</dependency>

This will get the artifact testng-5.7-jdk15.jar from the repo.

Enjoyyy!!!