I am trying to get subversion to play nice with my new maven setup
Consider the following sscce scenario:
Project 1 - Already in SVN
/project1
/src
/target
pom.xml
Project 2 - Also already in SVN
/project2
/src
/target
pom.xml
I want to transform both of these projects to be modules of one, global maven project, i.e.
/myProjects
/project1
/src
/target
pom.xml
/project2
/src
/target
pom.xml
pom.xml
The file systems are already set up in exactly this way on both the server and my development machine, but the outer /myProjects
isn't an actual subversion folder (I created it using "Rightclick -> New -> New Remote Folder" in subclipse, then "Rightclick -> Rename/Move" on the other folders. But then I tried to do "myProjects -> Share Project" and it wanted to purge my SVN data/comments etc.
What should I do? Is this direct command solution the only way, or can I do it using subclipse?