Thursday 21 September 2017

IDE - Most Used Shortcut In Eclipse/VisualStudio

Eclipse -
1. Going Back To Last Cursor Position - Alt + Left/Alt + Right
2. Ctrl+Q - moves the cursor to the last edit location




Visual Studio
1. Going Back To Last Cursor Position - CTRL + "-"

Maven: How To Add Local Dependency In Maven POM.XML

<dependencies>
  <dependency>
 <groupId>reporter</groupId>
 <artifactId>reporter</artifactId>
 <version>1.0.0</version>
 <scope>system</scope>
 <systemPath>${project.basedir}\lib\CignitiReporter-1.0.jar</systemPath>
     </dependency>
</dependencies>