I've installed Buckminster headless 4.2 (using the same script as I used for 3.7), with the subclipse connector, and it looks svnkit is missing from the install:
$ grep "<artifact" buckminster_4.2/artifacts.xml | sort | grep "org.t"
<artifact classifier='osgi.bundle' id='org.tigris.subversion.clientadapter' version='1.8.3'>
<artifact classifier='osgi.bundle' id='org.tigris.subversion.subclipse.core' version='1.8.12'>
$ grep "<artifact" buckminster_3.7/artifacts.xml | sort | grep "org.t"
<artifact classifier='osgi.bundle' id='org.tigris.subversion.clientadapter.svnkit' version='1.6.15'>
<artifact classifier='osgi.bundle' id='org.tigris.subversion.clientadapter' version='1.6.12'>
<artifact classifier='osgi.bundle' id='org.tigris.subversion.subclipse.core' version='1.6.18'>
<artifact classifier='osgi.bundle' id='org.tmatesoft.sqljet' version='1.0.7.t20110928_1718'>
<artifact classifier='osgi.bundle' id='org.tmatesoft.svnkit' version='1.3.7.r8274_v20111206_1553'>
I started looking at this because a materialize using the command line (buckminster headless) failed when I used 4.2, but worked when I did the same thing using 3.7.
Here's an extract from my script that installs Buckminster headless - just the relevant part. The process is as described in Appendix A of the BuckyBook:
repository_buckminster=http://download.eclipse.org/tools/buckminster/headless-${version}
repository_cloudsmith=http://download.cloudsmith.com/buckminster/external-${version}
#==========================================================
# install the base headless product
director -repository ${repository_buckminster} -destination ${install_dir} -profile Buckminster -installIU org.eclipse.buckminster.cmdline.product
#==========================================================
# install additional features into the just-installed Buckminster
# org.eclipse.buckminster.core.headless.feature : The Core functionality
# org.eclipse.buckminster.pde.headless.feature : Headless PDE and JDT support.
# org.eclipse.buckminster.git.headless.feature : Git
# org.eclipse.buckminster.subclipse.headless.feature : Subclipse
${buckminster_command} install ${repository_buckminster} org.eclipse.buckminster.core.headless.feature
${buckminster_command} install ${repository_buckminster} org.eclipse.buckminster.pde.headless.feature
${buckminster_command} install ${repository_buckminster} org.eclipse.buckminster.git.headless.feature
${buckminster_command} install ${repository_cloudsmith} org.eclipse.buckminster.subclipse.headless.feature
Has anyone successfully used Buckminster headless 4.2 with the Subclipse adaptor?
Thanks
Matthew