Bonbons67@internet.lu wrote on 01/25/2006 09:39:15 AM:
> I created a Java project in Eclipse and checked-out individual source
folders
> into the project folder:
>
> MyProject
> |-> src
> | |-> org.xyz.foo (svn:svn.foo.org/module/)
> | |-> com.abc.bar (svn:svn.bar.com/module/)
> |-> libs (svn:svn.foo.org/libs/)
>
> The project itself is not versionned.
>
> In this case Eclipse does not recognize the presence of versionned
folders.
> If the project was checkout, then cleaned from .svn folders to be
finally
> setup as above, Eclipse still offers the team features on versionned
folders,
> but synchronization attempts to execute team operations fails.
>
> Removing the project from eclipse workspace and adding it again does not
help
> either (versionned folders are not detected).
>
> Is this a feature that subclipse can offer "independently" of Eclipse,
or are
> there some prerequisits for it that are not met on Eclipse side?
(feature
> request for eclipse)
I do not think Eclipse does anything to prevent you from doing this, it
just leave it up to the Team provider to figure out. Subclipse does not
support this. That being said, you can get the same effect in a way that
is supported by using the svn:externals property. You would have this
checked into a Subversion repository somewhere. It could just be a local
file:// repository if necessary:
MyProject
|-> src
MyProject would have an svn:externals property that looks like this:
libs svn://svn.foo.org/libs
src would have an svn:externals property that looked something like this:
org.xyz.foo svn://svn.foo.org/module
com.abc.bar svn://svn.bar.com/module
In Subclipse you would then just checkout MyProject and Subversion would
check out all of the pieces and you could use the Team menu to manage all
of it.
Mark
_____________________________________________________________________________
Scanned for SoftLanding Systems, Inc. and SoftLanding Europe Plc by IBM Email Security Management Services powered by MessageLabs.
_____________________________________________________________________________
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subclipse.tigris.org
For additional commands, e-mail: users-help@subclipse.tigris.org
Received on Wed Jan 25 15:48:06 2006