Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to create an empty update site repo for Eclipse?

I'm currently working on a product that's being tested and I'd like to be able to have an update site automatically added to the available software sites as enabled.

If I do this then the user gets an error telling him that no repository was found at that location.

Is there any way to have a repository there that doesn't contain any updates? Can I just place an empty content.xml and artifact.xml?

share|improve this question
It's so crazy it just might work. Give it a try. – Chris Gerken Aug 14 '12 at 15:51

2 Answers

If you have a p2 composite site 1 and need to bootstrap it with multiple empty sites (before they are all built), you might want something like this:

now=`date +%s000`
webserver=user@domain:/web/server/path

cd /tmp
for d in component1 component2 component3 component4; do
echo "== ${f}/${d} =="
mkdir -p ${d}/all/repo/
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > ${d}/all/repo/site.xml
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > ${d}/all/repo/artifacts.xml
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > ${d}/all/repo/content.xml
echo "<site><description>Placeholder for ${d} site</description><feature></feature><category-def></category-def</site>" >> ${d}/all/repo/site.xml
echo "<?artifactRepository version='1.1.0'?><repository name='${d}.site' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'><properties size='2'><property name='p2.timestamp' value='${now}'/><property name='p2.compressed' value='true'/></properties></repository>" >> ${d}/all/repo/artifacts.xml
echo "<?metadataRepository version='1.1.0'?><repository name='${d}.site' type='org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository' version='1.0.0'><properties size='2'><property name='p2.timestamp' value='${now}'/><property name='p2.compressed' value='true'/></properties></repository>" >> ${d}/all/repo/content.xml
rsync -zrlt --rsh=ssh --protocol=28 ${d}/* ${weberver}/${f}/${d}/
done
cd ..
done

1 [http://download.jboss.org/jbosstools/builds/staging/composite/core/trunk/]

share|improve this answer
up vote 0 down vote accepted

In order to avoid any messages that the update page does not exists, I have created a dummy update site containing site.xml, artifacts.jar and content.jar

I have uploaded an archive with the dummy files here.

For those not trusting enough, the code for site.xml is:

<?xml version="1.0" encoding="UTF-8"?>
<site>

   <feature>

   </feature>
   <category-def>

   </category-def>
</site>

The code for artifacts.xml, which is contained in the artifacts.jar archive is:

<?xml version='1.0' encoding='UTF-8'?>
<?artifactRepository version='1.1.0'?>
<repository name='${p2.artifact.repo.name}' type='org.eclipse.equinox.p2.artifact.repository.simpleRepository' version='1'>
  <properties size='2'>
    <property name='p2.timestamp' value='1305295295102'/>
    <property name='p2.compressed' value='true'/>
  </properties>

</repository>

And finally, the contents of content.xml (from the content.jar file) is:

<?xml version='1.0' encoding='UTF-8'?>
<?metadataRepository version='1.1.0'?>
<repository name='${p2.metadata.repo.name}' type='org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository' version='1.0.0'>
  <properties size='2'>
    <property name='p2.timestamp' value='1305295295368'/>
    <property name='p2.compressed' value='true'/>
  </properties>
</repository>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.