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

RTP/Configuration-Format

< RTP
Revision as of 08:18, 21 May 2012 by Holger.staudacher.tasktop.com (Talk | contribs) (New page: Below an commented example of the RTP JSON configuration format is listed. You can create your own configurations and hook them via a [http://wiki.eclipse.org/RTP/Configuration system prop...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Below an commented example of the RTP JSON configuration format is listed. You can create your own configurations and hook them via a system property to an RTP instance. {

 // an array of installable items
 "sources": [ 
   {
     // the human readable name on an item
     "name": "rap", 
     // the description on an item
     "description": "Some text", 
     // the website of an item
     "infoUrl": "http://foo.bar/info", 
     // an array of different versions of an installable item
     "versions": [ 
       {
         // feature ids and versions for an item
         "features": [ { id : "org.eclipse.rap.feature.group", version : "2.4.0" }, { id : "org.eclipse.rap.feature.group.ext", version : "1.4.0" } ], 
         // the overall version for an item
         "version": "1.4", 
         // the url of the p2 repository of an item
         "repositoryUrl": "http://foo.bar" 
       },
       {
         "features": [ { id : "org.eclipse.rap.feature.group", version : "2.5.0" }, { id : "org.eclipse.rap.feature.group.ext", version : "1.5.0" } ],
         "version": "1.5",
         "repositoryUrl": "http://foo.bar2"
       }
     ]
   }
 ]

}

Back to the top