Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EPP/Obsolete/Packaging Site"

< EPP
(New page: ==Overview== * New central place where we list all available EPP packages * Demo available: [http://phoenix.eclipse.org/packages phoenix.eclipse.org/packages] * Bugs, feedback and commen...)
 
m (Overview)
Line 5: Line 5:
 
* Bugs, feedback and comments: [http://bugs.eclipse.org/224729 bug #224729]
 
* Bugs, feedback and comments: [http://bugs.eclipse.org/224729 bug #224729]
 
* The website is driven by the information in the EPP configuration file
 
* The website is driven by the information in the EPP configuration file
 +
* Email references: [http://dev.eclipse.org/mhonarc/lists/epp-dev/msg00188.html New MetaData Tag for the Package Config File] and [http://dev.eclipse.org/mhonarc/lists/epp-dev/msg00190.html Eclipse Packaging Site]
  
 
==New Information in the EPP Configuration File==
 
==New Information in the EPP Configuration File==

Revision as of 06:42, 8 April 2008

Overview

New Information in the EPP Configuration File

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <!-- Package Description information to be picked up by www.eclipse.org/packages -->
 <!-- PackageName is the title of your package 
      maintainer is the project or persons that are maintaining the package
      iconurl is the fully qualified URL to the icon you wish to use on the site (48x48)
      bugzillaComponentID is used to gather bugzilla information about your package.  
         This should be given to you after provisioning of the package is finished
      testPlan is the fully qualified URL to the test plan for this package
   -->
  <packageMetaData
   packageName="Eclipse IDE for C/C++ Developers"
   maintainer="Eclipse Packaging Project"
   iconurl="http://www.eclipse.org/downloads/images/c.jpg"
   bugzillaComponentId="cpp-package"
   testPlan="http://www.eclipse.org/epp/testplan.php" >

     <!-- Description is wrapped in CDATA tags to allow you to insert HTML code if necessary -->
     <description><![CDATA[An IDE for C/C++ developers.]]></description>

     <!-- packageTesters is a list of the people that are testing the package -->
     <packageTesters>
       <tester>Markus Knauer</tester>
    </packageTesters>

  </packageMetaData>

...

</configuration>

Back to the top