You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by Mark Swanson <ma...@ScheduleWorld.com> on 2007/04/14 08:21:52 UTC

Q: How do I get the 1.0.1 release branch from svn?

Hello folks,

I just realized I'm working off of the 1.0.2 unreleased trunk.
Is there a specific tag I need to use with svn to get the 1.0.1 release 
branch?

I would probably just be able to pick it from a list if I had the 
Eclipse subversion plugin installed - but I just have the command line 
and I can't seem to get the list of available tags/branches.

Thank you.

-- 
http://www.ScheduleWorld.com/
Free Google Calendar synchronization with Outlook, Evolution,
cell phones, BlackBerry, PalmOS, Exchange, Mozilla, Thunderbird,
Pocket PC/Windows Mobile. Also sync tasks, notes and contacts!
WebDAV, vfreebusy, RSS, LDAP, iCalendar, iTIP, iMIP support.

Re: Q: How do I get the 1.0.1 release branch from svn?

Posted by Mark Swanson <ma...@ScheduleWorld.com>.
Mark Swanson wrote:
> Hello folks,
> 
> I just realized I'm working off of the 1.0.2 unreleased trunk.
> Is there a specific tag I need to use with svn to get the 1.0.1 release 
> branch?

Actually, I probably don't need it. I'm just going to use the source 
from the 1.0.1 release archive and modify that. Sorry for the noise.

Cheers.

-- 
http://www.ScheduleWorld.com/
Free Google Calendar synchronization with Outlook, Evolution,
cell phones, BlackBerry, PalmOS, Exchange, Mozilla, Thunderbird,
Pocket PC/Windows Mobile. Also sync tasks, notes and contacts!
WebDAV, vfreebusy, RSS, LDAP, iCalendar, iTIP, iMIP support.

Re: Q: How do I get the 1.0.1 release branch from svn?

Posted by Emmanuel Lecharny <el...@gmail.com>.
Mark Swanson a écrit :

> Hello folks,
>
> I just realized I'm working off of the 1.0.2 unreleased trunk.
> Is there a specific tag I need to use with svn to get the 1.0.1 
> release branch?

As you are asking :
svn co 
http://svn.apache.org/viewvc/directory/apacheds/branches/1.0-with-dependencies/

you will get the current 1.0.2 trunk.

>
> I would probably just be able to pick it from a list if I had the 
> Eclipse subversion plugin installed - but I just have the command line 
> and I can't seem to get the list of available tags/branches.

Well, we all have subclipse (or subversive), but we don't use it for the 
initial check out, because it does not work correctly with svn:externals.

Just 'svn co' the full branch, do a 'mvn clean:install' first (using 
maven 2.0.4 at least), then a 'mvn eclipse:eclipse' and import the 
projects into eclipse. You are done :)

Emmanuel