Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[epp-dev] New MetaData Tag for the Package Config File.

Morning *

 

I’d like to propose the following format for keeping track of the metadata in the EPP Package Config XML file.  The Packaging site will use these files to keep its information up to date so that package maintainers and myself will not be constantly updating the website with new information.  I’ve attached an example XML file of how this would be used. 

 

**I tried to paste the XML into this email but it appears the mailing list daemon doesn’t like it when I send XML in the body of the email. Please see the attached file.  The new tag is located at the top.

 

 

Nathan Gervais - nathan@xxxxxxxxxxx

Web Developer 

The Eclipse Foundation

 

 

 

<?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 Software Architects and Modeling"
   maintainer="Eclipse Packaging Project"
   iconurl="http://www.eclipse.org/downloads/images/classic2.jpg";
   bugzillaComponentId="XXXX"
   testPlan="http://www.eclipse.org/some/url/testplan.html"; >
   	<!-- Description is wrapped in CDATA tags to all you to insert HTML code if necessary -->
  	 <description><![CDATA[This modeling package contains EMF, UML2, and OCL tools. It includes a complete SDK, developer tools and source code.]]></description>
  	<!-- packageTesters is a list of the people that are testing the package -->
  	 <packageTesters>
  		<tester>someone@xxxxxxxxxxxxx</tester>
  		<tester>thatguy@xxxxxxxxxxxxx</tester>
  	</packageTesters>
  </packageMetaData>
	
	<!-- version, the RCP version to build. This is used to determine the file 
    name of the root file archives -->
  <rcp version="3.4M5" />

	<!-- name, the name of the product, used in naming the created files. -->
	<product
	  name="eclipse-modeling-ganymede-M5"
	  eclipseProductId="org.eclipse.platform.ide"
    initialPerspectiveId="org.eclipse.jdt.ui.JavaPerspective" />

	<!-- url, pointing to an update site. -->
  <updateSites>
    <!-- local mirrors -->
    <updateSite url="file:///home/data/httpd/download.eclipse.org/eclipse/updates/3.4/" />
    <updateSite url="file:///home/data/httpd/download.eclipse.org/eclipse/updates/3.4milestones/" />
    <updateSite url="file:///home/data/httpd/download.eclipse.org/releases/ganymede/" />
    <updateSite url="file:///home/data/httpd/download.eclipse.org/technology/epp/updates/0.5milestones/" />

    <!-- eclipse.org update sites -->
    <!-- 
    <updateSite url="file:///home/mknauer/mirror/eclipse/updates/3.4milestones/" />
      <updateSite url="http://download.eclipse.org/eclipse/updates/3.4/"; />
      <updateSite url="http://download.eclipse.org/eclipse/updates/3.4milestones/"; />
      <updateSite url="http://download.eclipse.org/releases/ganymede/"; />
      <updateSite url="http://download.eclipse.org/releases/ganymede/staging/"; />
    -->
  </updateSites>

	<!-- id, a feature id. -->
	<!-- version, the feature version. -->
	<requiredFeatures>
    <feature
      id="org.eclipse.platform"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.sdk"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.emf"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.gef"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.uml2.sdk"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.emf.transaction"
      version="latest">
    </feature>
    <feature
      id="org.eclipse.emf.validation"
      version="latest">
    </feature>
    <feature
      id="org.eclipse.emf.workspace"
      version="latest">
    </feature>
    <feature
      id="org.eclipse.emf.query"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.ocl"
      version="latest">
    </feature>
    <feature
      id="org.eclipse.emf.ocl"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.gmf.sdk"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.uml2tools.sdk"
      version="latest">
    </feature>
    
    <feature
      id="org.eclipse.ocl.all.sdk"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.emf.emfqtv.all.sdk"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.m2m.qvt.oml.sdk"
      version="latest">
    </feature>

    <feature
      id="org.eclipse.epp.usagedata.feature"
      version="latest">
    </feature>

	</requiredFeatures>

	<!-- folder, pointing to a folder containing the zipped root files for each of 
		the target platforms. -->
  <rootFileFolder folder="/home/data/httpd/download.eclipse.org/eclipse/downloads/drops/S-3.4M5-200802071530" />

	<!-- relativeFolder, names the subfolder of the base folder where the update site will be created. 
		This is configurable so that working areas, especially root files, are reusable. -->
	<extensionSite relativeFolder="extension_site"></extensionSite>

	<!-- Create archives for win32, linux, macosx platforms, antZip is default format -->
	<targetPlatforms>
		<platform os="win32" ws="win32" arch="x86">
			<archiveFormat format="antZip"></archiveFormat>
			<eclipseIniFileContent path="/eclipse/">-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256M
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx256m</eclipseIniFileContent>
		</platform>
		<platform os="linux" ws="gtk" arch="x86">
			<archiveFormat format="tar" />
      <eclipseIniFileContent path="/eclipse/">-showsplash
org.eclipse.platform
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx256m</eclipseIniFileContent>
		</platform>
    <platform os="linux" ws="gtk" arch="x86_64">
      <archiveFormat format="tar" />
      <eclipseIniFileContent path="/eclipse/">-showsplash
org.eclipse.platform
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx256m</eclipseIniFileContent>
    </platform>
		<platform os="macosx" ws="carbon" arch="ppc">
			<archiveFormat format="tar" />
      <eclipseIniFileContent path="/eclipse/Eclipse.app/Contents/MacOS/">-showsplash
org.eclipse.platform
-vmargs
-Xdock:icon=../Resources/Eclipse.icns
-XstartOnFirstThread
-Xms40m
-Xmx256m
-XX:MaxPermSize=256m
-Dosgi.requiredJavaVersion=1.5
-Dorg.eclipse.swt.internal.carbon.smallFonts</eclipseIniFileContent>
		</platform>
	</targetPlatforms>
</configuration>

Back to the top