This file is provided to add some commands for managing a Maven local file repository.

** Adding/Updating files in repository:
1. Open up a command window and make sure you have access to Maven.
2. Change your current directory to the folder where the JAR file is that you want to add/update.
3. Type in the following command:

	mvn deploy:deploy-file -Durl=file://{path to local file repository} -Dfile={jar file name} -DgroupId={groupId} -Dversion={version} -Dpackaging={jar|pom|valid packaging type}
	
	In the above sample command, replace the values in curly braces ({}) with valid values.
	
4. Press enter to execute.
5. Test your build to make sure the new jar files are utilized by Maven.
6. Check in and deliver your changes.



** Removing files in the repository:
The only way to remove a file from the repository is to local and delete the files in the appropriate folder.  
Review the Maven documentation for information on folder structure.
