Maven Project in SVN

0

I have the following Maven project structure in my workspace:

  • system (with POM set to consolidate all projects below)
  • DAO
  • EAR
  • MODEL
  • WEB
  • VO

I'm developing in partnership and opted to use SVN.

I would like to know the best process for committing the project for the first time and how to checkout.

Could someone help?

    
asked by anonymous 06.05.2015 / 04:42

1 answer

1

The easiest option is to use the tortoise SVN client, which integrates into your operating system. Here you have the import option, which will import your code into the URL of your SVN repository. Be sure to set the tortoise exception list first, so that it does not import all files such as dll, exe, bak, sln etc.

Then do the checkout of the repository to the folder of your project, so that tortoise creates the versioning structure of the code. From here you can start working with your repository by doing commits and updates.

You can also use another SVN client such as Smartsvn or the Ankhsvn . You can also use the command line to perform these operations.

    
06.05.2015 / 11:55