org.eclipse.update.examples/plugin.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11 - (download) (as text) (annotate)
Wed Feb 11 18:21:42 2009 UTC (9 months, 2 weeks ago) by johna
Branch: MAIN
CVS Tags: HEAD
Changes since 1.10: +11 -1 lines
Updated copyrights
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright (c) 2009 IBM Corporation and others.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
    
    Contributors:
        IBM Corporation - initial API and implementation
 -->

<plugin>

     <extension
         id="zip"
         point="org.eclipse.update.core.featureTypes">
      <feature-factory
            class="org.eclipse.update.examples.buildzip.BuildZipFeatureFactory">
      </feature-factory>
   </extension>
   <extension
         id="site.zip"
         point="org.eclipse.update.core.siteTypes">
      <site-factory
            class="org.eclipse.update.examples.buildzip.BuildZipSiteFactory">
      </site-factory>
   </extension>
   <extension
         id="site.freeform"
         point="org.eclipse.update.core.siteTypes">
      <site-factory
            class="org.eclipse.update.examples.freeform.FreeFormSiteFactory">
      </site-factory>
   </extension>

</plugin>