|
Re: How to add a new project [message #885862 is a reply to message #885768] |
Wed, 13 June 2012 18:26 |
|
Hi Yves,
At Eclipse, Babel takes its project information from Bugzilla, so there is no UI to add new projects.
You can add new projects with SQL queries:
insert into projects set project_id = 'eclipse', is_active = 1 ;
You can then define versions:
insert into project_versions set project_id = "eclipse", version = "3.3", is_active = 1;
insert into project_versions set project_id = "eclipse", version = "3.4", is_active = 1;
You can then define release trains (ie, multiple projects that follow the same release cycle):
insert into release_trains values ('helios', '3.6.0', 1);
insert into release_trains values ('indigo', '3.7.0', 1);
Binding specific versions of a project to a release train (cycle) is then done via the map_files.php UI.
I hope this helps!
Denis Roy
Eclipse Webmaster -- webmaster@eclipse.org
|
|
|
Powered by
FUDForum. Page generated in 0.03088 seconds