| <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop' |
| |
| $pageTitle = "Technology Project Leaders"; |
| $pageKeywords = "technology"; |
| $pageAuthor = "Bjorn Freeman-Benson Nov 20/05"; |
| |
| ob_start(); |
| ?> |
| <div id="maincontent"> |
| <div id="midcolumn"> |
| <h1><?= $pageTitle ?></h1> |
| |
| <p>The Eclipse Technology Project is managed by a small group known as the |
| Eclipse Technology Project Management Committee (<a href="technology-charter.php#PMC">PMC</a>). |
| The work of the Project is organized into subprojects. Each subproject |
| has a leader who has overall responsibility for its success. Large subprojects |
| are further divided into component teams, each of who has a leader that |
| is responsible for its overall success. We have listed just the PMC |
| <!-- and |
| subproject leaders |
| --> |
| here but you will encounter many dedicated eclipse |
| project committers and developers in the <a href="/newsgroups/" target="_top">newsgroup</a> |
| and <a href="/mail/" target="_top">mailing lists</a>.</p> |
| |
| <h2>Project |
| Management Committee</h2> |
| |
| <ul class="midlist"> |
| <li> <b>Bjorn Freeman-Benson, Eclipse Foundation (bjorn at eclipse.org) (PMC |
| lead)</b><br> |
| Bjorn is the Technical Director, Open Source Process and Technology at the |
| Eclipse Foundation. Throughout his meandering career, Bjorn has always been interested |
| programming languages and IDEs in spite of occassionally wandering away |
| from their one true path. Bjorn has worked for OTI, Amazon.com, Rational, |
| and Gemstone, among others. He is also happy to expound at length about |
| his love of flying. <br/></li> |
| |
| <li> <b>Brian Barry, Bedarra (brian at bedarra.com)</b><br> |
| Brian Barry is currently CEO of Bedarra Research Labs. From 1991-2002 he |
| served variously as Chief Scientist, CEO, President and CTO at Object Technology |
| International, Inc. Under his leadership OTI developed the Eclipse Platform, |
| IBM VisualAge for Java, and IBM VisualAge MicroEdition for embedded systems. |
| He has over 20 years of experience in the design and implementation of component-based |
| and object-oriented systems. Dr. Barry has published a number of research |
| papers and articles on a wide variety of technical subjects, including simulation, |
| OO applications, systems integration, embedded systems and software engineering, |
| and is a frequent speaker on software technology. He has served on the Program |
| Committees for software conferences such as OOPSLA, ECOOP, AOSD and Agile |
| Development, was a co-author of the ANSI Smalltalk standard, and actively |
| participates in a research review boards and committees. He holds a Ph.D. |
| from Queen’s University. <br/></li> |
| |
| <li> <b>Wayne Beaton, Eclipse Foundation (wayne at eclipse.org)</b><br> |
| </li> |
| |
| <li><b>Ward Cunningham, Eclipse Foundation (ward at eclipse.org)</b><br> |
| </li> |
| |
| <li><b>John Duimovich, IBM (john_duimovich at ca.ibm.com)</b><br> |
| John Duimovich, IBM distinguished engineer, has been the lead designer and |
| implementor for OTI/IBM’s virtual machine technology for the past ten |
| years. He has designed virtual machines for a wide range of platforms, from |
| the implementations for embedded and real time systems to those for IBM |
| mainframe systems. John has played a key role in the development of ENVY/Smalltalk, |
| VA/Micro Edition, and VA/Java Java IDEs. In addition to serving on the Eclipse |
| Technology PMC, John serves as the lead of the Eclipse Tools PMC.<br/></li> |
| |
| <li><b>Cliff Schmidt, BEA (cliff at bea.com)</b><br> |
| Cliff is a member of Apaches Incubator Project Management Committee and |
| brings this experience to the Eclipse Technology project. He has spent the |
| last two years collaborating with various open source communities to |
| evolve policies and procedures that encourage the success of new open |
| source projects, particularly with respect to licensing, logistics, and |
| community development. He has also been responsible for BEAs open |
| source strategy and relationship with open source organizations, such as |
| the Eclipse Foundation and the Apache Software Foundation. Prior to this, |
| he specialized in standards strategy, working with OASIS, the Java |
| Community Process, and the World Wide Web Consortium.<br/></li> |
| |
| </ul> |
| |
| <?php |
| # Paste your HTML content between the EOHTML markers! |
| $html = ob_get_contents(); |
| ob_end_clean(); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |