Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create a package (devoid of SVN entries, Eclipse settings) from a project stored in SVN and managed using maven. I should be able to create a package which I can re-use as a snapshot at a latter point in time. How should I do this?

share|improve this question

3 Answers

up vote 1 down vote accepted

Assuming your have setup your project with a SCM, maven will ignore the .svn directories and as long as your eclipse properties files aren't within your "src" folders, you won't get those either. Your -SNAPSHOT versions can be deployed and reused later.

If you just want to have the SVN repository "SNAPSHOT" saved for later, I would suggest just using a SVN "TAG" to save that point in time within the repository. That can be done using the Maven SCM Plugin

At that point you can always checkout the tagged version and continue from that exact revision.

share|improve this answer

There are multiple ways you can do this. One of the simplest ways is to use scripts (shell/batch/powershell) and do an svn export. This will get a specified revision of the source code without the SVN entries, unlike svn checkout. Essentially, you will be executing the following command in your script:

svn export [-r REV] URL[@PEGREV] [PATH]

You can add the commands to remove the eclipse setting in your script.

share|improve this answer

You can use the maven source plugin to do this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.