[equinox-dev] Consider moving Equinox back to the Eclipse project

2017-06-17 Thread Thomas Watson
Over the years Equinox has become a stable project. The last major code effort was in the Luna release when the Equinox framework was refactored to use the OSGi generic capability and requirements model along with the OSGi Resolver service. Over the past few years the list of active committer

[equinox-dev] Consider moving Equinox back to the Eclipse project

2017-06-19 Thread Thomas Watson
  Over the years Equinox has become a stable project.  The last major code effort was in the Luna release when the Equinox framework was refactored to use the OSGi generic capability and requirements model along with the OSGi Resolver service.  Over the past few years the list of active committers

Re: [equinox-dev] Usage of Variables in config.ini file

2017-09-21 Thread Thomas Watson
See the usage of method org.eclipse.osgi.internal.framework.EquinoxConfiguration.ConfigValues.substituteVars(Properties)   This should be possible today.  Is it not working for you? Tom      - Original message -From: "Vikram Aruchamy (RBEI/ETB5)" Sent by: equinox-dev-boun...@eclipse.orgTo:

Re: [equinox-dev] Support for Java 9 modules

2017-10-04 Thread Thomas Watson
Something like that could be done, but I question the approach.  Seem like something that made it easy to stick OSGi meta-data into a module archive (jar) would be better.  Something like Eclipse Bundle Recipes or using BND tools directly. Tom      - Original message -From: Lars Vogel Sent

Re: [equinox-dev] Support for Java 9 modules

2017-10-05 Thread Thomas Watson
from your answer, I understand that OSGi / Equinox does currentlynot plan to simplify the consumption of the Java 9 modules. So we haveto stay with the old conversion process.Thanks again for the answer, LarsOn Wed, Oct 4, 2017 at 8:20 PM, Thomas Watson wrote:> Something like that could b

Re: [equinox-dev] Support for Java 9 modules

2017-10-05 Thread Thomas Watson
s relatively>     time-consuming (convert the lib and all of its dependencies to become>     an OSGi bundle and at it to the target platform).>>     But from your answer, I understand that OSGi / Equinox does currently>     not plan to simplify the consumption of the Java 9 modules. S

Re: [equinox-dev] org.osgi.util.promise

2018-03-09 Thread Thomas Watson
Hi Scott,   You are correct.  That package got added to Oxygen when we started using the Felix SCR implementation for our OSGI R6 Declarative Services. Tom      - Original message -From: Scott Lewis Sent by: equinox-dev-boun...@eclipse.orgTo: Equinox development mailing list Cc:Subject: [eq

Re: [equinox-dev] logging jobs

2018-03-28 Thread Thomas Watson
What do you mean by runtime jobs?  When I hear that in the Eclipse context I think something from org.eclipse.core.jobs.  But I suspect that is not what you are asking for.  Are you asking for some tracing for all background operations the framework performs?  I assume you are trying to diagnose an

Re: [equinox-dev] logging jobs

2018-03-28 Thread Thomas Watson
AM      On Wed, Mar 28, 2018 at 10:37 AM, Thomas Watson <tjwat...@us.ibm.com> wrote: What do you mean by runtime jobs?  When I hear that in the Eclipse context I think something from org.eclipse.core.jobs.    Maybe?   But I suspect that is not what you are asking for.  Are you asking fo

Re: [equinox-dev] Provide new OSGi service API without obsolete API(Dictionary)?

2018-06-29 Thread Thomas Watson
Dictionary my be documented as obsolete, but it is not deprecated.  I would not want to deprecate a spec'ed API method that takes non-deprecated types.  Anyway, the discussion is happening now in the expert group. Tom      - Original message -From: Lars Vogel Sent by: equinox-dev-boun...@ec

Re: [equinox-dev] Parallel bundle activation?

2018-10-26 Thread Thomas Watson
Neil and Gunner are correct.  I also question the motivation to running activators in parallel.  In implies some kind of design flaw because you must have some long running BundleActivators if you want to run them in parallel.  You are better off investigating why you must have long running BundleA

Re: [equinox-dev] Tycho Surefire Test fails to load Schemafactory

2018-11-26 Thread Thomas Watson
I added a comment to the bug report, we can continue the discussion there. Tom      - Original message -From: Guillaume Dufour Sent by: equinox-dev-boun...@eclipse.orgTo: Equinox development mailing list Cc: tycho-...@eclipse.orgSubject: Re: [equinox-dev] Tycho Surefire Test fails to load S

[equinox-dev] 4,11 Plans

2018-12-18 Thread Thomas Watson
I've started the 4.11 Equinox planning page at https://wiki.eclipse.org/Equinox/Plan/4.11   Please add any major work items you plan to work on for 4.11. Tom      - Original message -From: "Daniel Megert" Sent by: eclipse-dev-boun...@eclipse.orgTo: "General development mailing list of the E

Re: [equinox-dev] 4,11 Plans

2018-12-18 Thread Thomas Watson
d I place these?  - Ray   [1] https://docs.oracle.com/javaee/7/api/javax/servlet/ServletContainerInitializer.html  On Tue, Dec 18, 2018 at 11:20 AM Thomas Watson <tjwat...@us.ibm.com> wrote: I've started the 4.11 Equinox planning page at https://wiki.eclipse.org/Equinox/Plan/4.11   Please ad

Re: [equinox-dev] All jobs @ Equinox JIPP Instance are disabled now, what's the reason?

2019-03-27 Thread Thomas Watson
The equinox jobs have been migrated over to the new infrastructure, but we are experiencing some issues with the migration.  See https://bugs.eclipse.org/bugs/show_bug.cgi?id=545352 Tom      - Original message -From: Mykola Nikishov Sent by: equinox-dev-boun...@eclipse.orgTo: equinox-dev@ec

Re: [equinox-dev] OS

2019-04-23 Thread Thomas Watson
That version is over 6 years old and was released before Java 8 was even available so it may have issues with running on the oldest supported Java available and I doubt it will work well on anything Java 9+.  While I suspect it should just work for the most part on Java 8 there will be a few things

Re: [equinox-dev] Log Maven version in p2-master and p2-gerrit jobs

2019-06-03 Thread Thomas Watson
Thanks Mykola, I've done the same for the Equinkox framework and bundles jobs now. Tom      - Original message -From: Mykola Nikishov Sent by: equinox-dev-boun...@eclipse.orgTo: equinox-dev@eclipse.orgCc:Subject: [EXTERNAL] [equinox-dev] Log Maven version in p2-master and p2-gerrit jobsDate

Re: [equinox-dev] understanding resolving results

2019-06-12 Thread Thomas Watson
What happens if you run with -clean.  Does the bad install still have the uses constraint error?  Before doing so you may want to backup the configuration/ folder so you can get back to the "bad" state.  Equinox caches previous runs wiring state.  When additional bundles are installed they are reso

Re: [equinox-dev] In which thread are OSGI services started

2019-09-04 Thread Thomas Watson
The answer is the same if you are using OSGi DS (Felix SCR) to define the service. Tom      - Original message -From: Lars Vogel Sent by: equinox-dev-boun...@eclipse.orgTo: Equinox development mailing list Cc:Subject: [EXTERNAL] Re: [equinox-dev] In which thread are OSGI services startedDat

Re: [equinox-dev] Sources for plugins to fulfil OSS obligations

2019-11-01 Thread Thomas Watson
All the source can be found in the eclipse git repositories info found at https://git.eclipse.org/c/equinox/rt.equinox.framework.git/ and https://git.eclipse.org/c/equinox/rt.equinox.bundles.git/   But for most we do publish the source JARs into maven central:   https://search.maven.org/remoteconte

[equinox-dev] Incorrect merge of osgiR8 branch into master for rt.equinox.framework

2020-03-10 Thread Thomas Watson
I incorrectly merged into master a long running branch I have for OSGi R8 development in the rt.equinox.framework.  I have a bug opened against the foundation asking to get a force push to master to correct things:  https://bugs.eclipse.org/bugs/show_bug.cgi?id=560997   As much as I dislike a force

Re: [equinox-dev] Incorrect merge of osgiR8 branch into master for rt.equinox.framework

2020-03-10 Thread Thomas Watson
ation to do the force push to master for me.   Sorry for the bone-headed move on my part. Tom      - Original message -From: Thomas Watson/Austin/IBMTo: equinox-dev@eclipse.org, platform-releng-...@eclipse.orgCc:Subject: Incorrect merge of osgiR8 branch into master for rt.equinox.framewor

Re: [equinox-dev] [platform-releng-dev] Incorrect merge of osgiR8 branch into master for rt.equinox.framework

2020-03-11 Thread Thomas Watson
from:   $ git blame bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF--snip--713ce018b1 (Thomas Watson      2020-03-10 16:03:39 -0500  5) Bundle-Version: 3.15.300.qualifier   to$ git blame bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF--snip--27288b2b5b (Alexander Kurtakov 2020-03-08 14:28

Re: [equinox-dev] [platform-releng-dev] Incorrect merge of osgiR8 branch into master for rt.equinox.framework

2020-03-11 Thread Thomas Watson
Thanks again Johah,   The blame history has been properly restored to the master branch and to the osgiR8 branch using this approach.  My mistake is now properly swept under the rug. Tom      - Original message -From: "Thomas Watson" Sent by: equinox-dev-boun...@eclipse.orgTo: e

Re: [equinox-dev] How does Equinox infer systemCapabilities without .profile files?

2020-07-16 Thread Thomas Watson
As Ed mentioned it is here: https://github.com/eclipse/rt.equinox.framework/blob/I20200715-1800/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java#L1843   I suggest you take that code and modify it as necessary directly into tycho.  It is not that much code to calculate th

Re: [equinox-dev] JAXB with Java 11 in OSGi

2020-07-28 Thread Thomas Watson
I would try the osgi-dev mailing list: https://mail.osgi.org/mailman/listinfo/osgi-dev Tom      - Original message -From: Lars Vogel Sent by: equinox-dev-boun...@eclipse.orgTo: Equinox development mailing list Cc:Subject: [EXTERNAL] [equinox-dev] JAXB with Java 11 in OSGiDate: Tue, Jul 28,

Re: [equinox-dev] p2 does not check uses at install time

2020-11-18 Thread Thomas Watson
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=525368   Under the covers p2 uses SAT4J to implement a resolver for selecting what to install.  I remember discussing with the original p2 developers the complications of the uses directive such that they could look into encoding the constraint chec

Re: [equinox-dev] Sources for plugins

2020-11-24 Thread Thomas Watson
I think there is simply a miscommunication here and nothing to take offence at.  Regardless we have given Ranjana more than enough information. Tom      - Original message -From: "Sravan K Lakkimsetti" Sent by: equinox-dev-boun...@eclipse.orgTo: "Equinox development mailing list" Cc:Subject

Re: [equinox-dev] Marking org.eclipse.osgi.compatibility.state APIs as deprecated?

2021-01-08 Thread Thomas Watson
I would be in favor of deprecating the API package org.eclipse.osgi.service.resolver which is contained in the Equinox Framework (org.eclipse.osgi).  The framework fragment called org.eclipse.osgi.compatibility.state holds the actual implementation, which is internal.  But anything needing to get a

Re: [equinox-dev] Marking org.eclipse.osgi.compatibility.state APIs as deprecated?

2021-01-08 Thread Thomas Watson
gestion here to deprecate these things too?! On 08.01.2021 15:40, Thomas Watson wrote: I would be in favor of deprecating the API package org.eclipse.osgi.service.resolver which is contained in the Equinox Framework (org.eclipse.osgi).  The framework fragment called org.eclipse.osgi.compatibility.

Re: [equinox-dev] Marking org.eclipse.osgi.compatibility.state APIs as deprecated?

2021-01-08 Thread Thomas Watson
's all to say that this looks like a rat hole to me. :-(  On 08.01.2021 16:02, Thomas Watson wrote: You are correct, this is a rather a tricky situation.  Especially because of things like org.eclipse.pde.core.plugin.IPluginModelBase.setBundleDescription(BundleDescription)   I'm not

Re: [equinox-dev] Marking org.eclipse.osgi.compatibility.state APIs as deprecated?

2021-01-08 Thread Thomas Watson
I've certainly made fixes to this code long after Equinox has stopped using it and I don't mind maintaining fixes there when required.  I do care enough to not break existing projects that are using this API.  After all, I do use PDE nearly every day and we are very dependant on tycho to build.  Ed

Re: [equinox-dev] Native code on Windows 10

2021-01-28 Thread Thomas Watson
To be clear, the Eclipse IDE doesn't support x86 32-bit.  Nothing in the Equinox Framework prevents you from running on x86 32-bit.   Can you run the gogo console in your environment and run the following command?inspect capability osgi.native 0   I expect output like this (note this is from my Mac

Re: [equinox-dev] Classloader precedence of osgi.dev entries

2021-04-12 Thread Thomas Watson
The dev class path entries are prepended to the value of the Bundle-ClassPath header value. Normal delegation rules apply for the dev class path as if they are part of the bundle's Bundle-ClassPath.  That roughly is the following:1) Import-Package wires, if package is imported the search terminates

Re: [equinox-dev] Classloader precedence of osgi.dev entries

2021-04-20 Thread Thomas Watson
80420-1519.jarshould this work or do I need to explode the jar files into a folder?Am 12.04.21 um 16:17 schrieb Thomas Watson:> The dev class path entries are prepended to the value of the> Bundle-ClassPath header value. Normal delegation rules apply for the dev> class path as if they ar

Re: [equinox-dev] Eclipse Equinox, OSGi specifications and plugin.xml

2021-09-29 Thread Thomas Watson
That is a bit of a dramatic statement that can open a can of worms.  The extension registry and the Eclipse platform model with its many extension points does what it does very well.  If you are developing bundles that plugin to the Eclipse platform do not "feel bad" about using the right technolog

Re: [equinox-dev] [p2-dev] Best way to contribute values (eg PGP keys) with OSGi?

2021-12-01 Thread Thomas Watson
If all you need is a path to some resource in a bundle then there is no need for a custom header or a custom service interface.  I recommend you define your own capability namespace and define a set of attributes that describe the capability for such a namespace.   For example, define a new capabil

Re: [equinox-dev] Issue with OSGI Annotations

2022-02-24 Thread Thomas Watson
The package org.osgi.service.component.annotations is not meant to be imported by bundles. There is no need for a bundle to be wired to these packages at runtime. The JARs the OSGi specification (working group) provides in maven central are only meant to be used for compile time dependencies.

[equinox-dev] Stop building and publishing the org.eclipse.equinox.supplement bundle

2022-03-09 Thread Thomas Watson
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=579164 Speak up now if you or your project makes use of the org.eclipse.equinox.supplement bundle. Once I discuss with the PMC, if we agree to remove then I will post to cross-project-issues-...@eclipse.org also. Tom ___

Re: [equinox-dev] Migration of git repositories to github

2022-03-09 Thread Thomas Watson
I assume the migration will include binaries also (https://git.eclipse.org/c/equinox/rt.equinox.binaries.git/) or is that not necessary? Tom From: equinox-dev on behalf of Aleksandar Kurtakov Sent: Wednesday, March 9, 2022 10:06 AM To: Equinox development mail

Re: [equinox-dev] [eclipse.org-architecture-council] Fwd: Eclipse heads-up

2022-11-01 Thread Thomas Watson
Thanks, I saw that go by. Equinox was one of the early adopters of parallel class loaders during its design and eventual inclusion in Java 7. Long ago we stopped needing any such flags to prevent deadlock with our non-hierarchical class loaders. This should have no impact for Eclipse projects

[equinox-dev] +1 for Susan McCourt

2007-07-26 Thread portal on behalf of Thomas Watson
+1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Oleg Besedin

2007-09-12 Thread portal on behalf of Thomas Watson
+1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Stefan Liebig

2007-10-18 Thread portal on behalf of Thomas Watson
+1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Vote for Committer status for Stoyan Boshev has started

2007-10-18 Thread portal on behalf of Thomas Watson
eclipse.incubator.equinox Committers, This automatically generated message signals that Thomas Watson has nominated Stoyan Boshev as a Committer on the equinox component of the eclipse.incubator project. The reason given is as follows: Stoyan has been contributing to the development of various

[equinox-dev] Committer vote for Stoyan Boshev has concluded successfully

2007-10-25 Thread portal on behalf of Thomas Watson
Kaegi ? Peter Kriens ? Martin Lippert +1 Jeff McAffer ? Susan McCourt ? Kim Moir ? Andrew Niefer +1 Pascal Rapicault ? Jay Rosenthal +1 Thomas Watson ? Matthew Webster ? Ikuo Yamasaki If you have any questions, please do not hesitate to contact your project

[equinox-dev] Welcome Stoyan Boshev as a new eclipse.incubator Committer

2007-11-02 Thread portal on behalf of Thomas Watson
eclipse.incubator.equinox Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Stoyan Boshev. Stoyan Boshev is a new full Committer on the equinox component of the eclipse.incubator project. Welcome! ___

[equinox-dev] +1 for Boris Bokowski

2008-03-28 Thread portal on behalf of Thomas Watson
+1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Neil Bartlett

2008-03-28 Thread portal on behalf of Thomas Watson
+1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Vote for Committer status for John Arthorne has started

2008-11-14 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message signals that Thomas Watson has nominated John Arthorne as a Committer on the Bundles component of the rt.equinox project. The reason given is as follows: John Arthorne has been a long time member and committer on the platform

[equinox-dev] Committer vote for John Arthorne has concluded successfully

2008-11-21 Thread portal on behalf of Thomas Watson
paperwork and provisioning the account. Vote summary: 6/0/0 with 6 not voting +1 Oleg Besedin ? Stoyan Boshev ? Sonia Dimitrov ? Pavlin Dobrev ? BJ Hargrave ? Kim Horne +1 DJ Houghton +1 Simon Kaegi +1 Jeff McAffer ? Kim Moir +1 Pascal Rapicault +1 Thomas

[equinox-dev] Committer vote for John Arthorne has been approved by the PMC

2008-11-24 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the PMC's approval of the vote for John Arthorne's full Committer status on the rt.equinox.bundles component of the rt.equinox project. The next step is for the project lead to return to the portal and fill in the CVS package

[equinox-dev] Welcome John Arthorne as a new rt.equinox Committer

2008-11-25 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for John Arthorne. John Arthorne is a new full Committer on the Bundles component of the rt.equinox project. Welcome! _

[equinox-dev] +1 for Scott Lewis on rt.equinox.incubator

2009-10-16 Thread portal on behalf of Thomas Watson
+1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Vote for Committer status for Ruibin Zhou has started

2009-12-11 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message signals that Thomas Watson has nominated Ruibin Zhou as a Committer on the rt.equinox.incubator project. The reason given is as follows: As part of the move of the SODA Device Kit move to rt.equinox.incubator (http

[equinox-dev] Vote for Committer status for Aldo Eisma has started

2009-12-11 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message signals that Thomas Watson has nominated Aldo Eisma as a Committer on the rt.equinox.incubator project. The reason given is as follows: As part of the move of the SODA Device Kit move to rt.equinox.incubator (http

[equinox-dev] Vote for Committer status for David Lavin has started

2009-12-11 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message signals that Thomas Watson has nominated David Lavin as a Committer on the rt.equinox.incubator project. The reason given is as follows: As part of the move of the SODA Device Kit move to rt.equinox.incubator (http

[equinox-dev] Vote for Committer status for Simon Archer has started

2009-12-11 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message signals that Thomas Watson has nominated Simon Archer as a Committer on the rt.equinox.incubator project. The reason given is as follows: As part of the move of the SODA Service Activator Toolkit (SAT) to rt.equinox.incubator

[equinox-dev] Committer vote for Ruibin Zhou has concluded successfully

2009-12-18 Thread portal on behalf of Thomas Watson
? Dave Stevenson +1 Thomas Watson ? Matthew Webster If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo

[equinox-dev] Committer vote for David Lavin has concluded successfully

2009-12-18 Thread portal on behalf of Thomas Watson
? Dave Stevenson +1 Thomas Watson ? Matthew Webster If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo

[equinox-dev] Committer vote for Aldo Eisma has concluded successfully

2009-12-18 Thread portal on behalf of Thomas Watson
? Dave Stevenson +1 Thomas Watson ? Matthew Webster If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo

[equinox-dev] Committer vote for Simon Archer has concluded successfully

2009-12-18 Thread portal on behalf of Thomas Watson
? Dave Stevenson +1 Thomas Watson ? Matthew Webster If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo

[equinox-dev] Welcome Simon Archer as a new rt.equinox.incubator Committer

2010-01-06 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Simon Archer. Simon Archer is a new full Committer on the rt.equinox.incubator project. Welcome! ___ equi

[equinox-dev] Welcome Ruibin Zhou as a new rt.equinox.incubator Committer

2010-01-06 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Ruibin Zhou. Ruibin Zhou is a new full Committer on the rt.equinox.incubator project. Welcome! ___ equino

[equinox-dev] Welcome David Lavin as a new rt.equinox.incubator Committer

2010-01-06 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for David Lavin. David Lavin is a new full Committer on the rt.equinox.incubator project. Welcome! ___ equino

[equinox-dev] Welcome Aldo Eisma as a new rt.equinox.incubator Committer

2010-01-06 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Aldo Eisma. Aldo Eisma is a new full Committer on the rt.equinox.incubator project. Welcome! ___ equinox-

[equinox-dev] Vote for Committer status for Lazar Kirchev was started by Thomas Watson

2010-06-28 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message signals that Thomas Watson has nominated Lazar Kirchev as a Committer on the rt.equinox.incubator project. The reason given is as follows: I would like to nominate Lazar Kirchev to the equinox incubator. Lazar has shown a

[equinox-dev] Committer vote for Lazar Kirchev has concluded successfully

2010-07-05 Thread portal on behalf of Thomas Watson
Moir +1 Andrew Niefer ? Matthew Piggott ? Steffen Pingel ? Pascal Rapicault ? Heiko Seeberger ? Dave Stevenson +1 Thomas Watson ? Matthew Webster ? Ruibin Zhou If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO

[equinox-dev] Welcome Lazar Kirchev as a new rt.equinox.incubator Committer

2010-07-12 Thread portal on behalf of Thomas Watson
rt.equinox.incubator Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Lazar Kirchev. Lazar Kirchev is a new full Committer on the rt.equinox.incubator project. Welcome! ___ eq

[equinox-dev] +1 for Brian de Alwis on rt.equinox.incubator by Thomas Watson

2010-12-23 Thread portal on behalf of Thomas Watson
Thomas Watson voted: +1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Vote for Committer status for Glyn Normington was started by Thomas Watson

2011-03-31 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message signals that Thomas Watson has nominated Glyn Normington as a Committer on the rt.equinox.bundles project. The reason given is as follows: As discussed in several Equinox meetings, I have been collaborating with Glyn Normington

[equinox-dev] Vote for Committer status for Borislav Kapukaranov was started by Thomas Watson

2011-03-31 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message signals that Thomas Watson has nominated Borislav Kapukaranov as a Committer on the rt.equinox.bundles project. The reason given is as follows: As discussed in several Equinox meetings, I have been collaborating with the Virgo

[equinox-dev] Vote for Committer status for John W Ross was started by Thomas Watson

2011-03-31 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message signals that Thomas Watson has nominated John W Ross as a Committer on the rt.equinox.bundles project. The reason given is as follows: I have been working with John during the Indigo release on the compendium service

[equinox-dev] Committer vote for Glyn Normington has concluded successfully

2011-04-07 Thread portal on behalf of Thomas Watson
? Heiko Seeberger +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Committer vote for Borislav Kapukaranov has concluded successfully

2011-04-07 Thread portal on behalf of Thomas Watson
Rapicault ? Heiko Seeberger +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox

[equinox-dev] Committer vote for John W Ross has concluded successfully

2011-04-07 Thread portal on behalf of Thomas Watson
? Heiko Seeberger +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Welcome Glyn Normington as a new rt.equinox.bundles Committer

2011-04-18 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Glyn Normington. Glyn Normington is a new full Committer on the rt.equinox.bundles project. Welcome! ___ eq

[equinox-dev] Welcome John W Ross as a new rt.equinox.bundles Committer

2011-04-18 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for John W Ross. John W Ross is a new full Committer on the rt.equinox.bundles project. Welcome! ___ equinox-de

[equinox-dev] Welcome Borislav Kapukaranov as a new rt.equinox.bundles Committer

2011-04-18 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Borislav Kapukaranov. Borislav Kapukaranov is a new full Committer on the rt.equinox.bundles project. Welcome!

[equinox-dev] Vote for Committer status for Lazar Kirchev was started by Thomas Watson

2011-10-03 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message signals that Thomas Watson has nominated Lazar Kirchev as a Committer on the rt.equinox.bundles project. The reason given is as follows: Lazar has been working on a solution to extract the equinox console out of the framework

[equinox-dev] Committer vote for Lazar Kirchev has concluded successfully

2011-10-09 Thread portal on behalf of Thomas Watson
+1 Glyn Normington ? Pascal Rapicault ? John Ross ? Heiko Seeberger +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list equinox-dev

[equinox-dev] Welcome Lazar Kirchev as a new rt.equinox.bundles Committer

2011-10-13 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Lazar Kirchev. Lazar Kirchev is a new full Committer on the rt.equinox.bundles project. Welcome! ___ equino

[equinox-dev] +1 for Matitiahu Allouche on rt.equinox.bundles by Thomas Watson

2012-01-13 Thread portal on behalf of Thomas Watson
Thomas Watson voted: +1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Bogdan Gheorghe on rt.equinox.framework by Thomas Watson

2012-03-28 Thread portal on behalf of Thomas Watson
Thomas Watson voted: +1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] +1 for Silenio Quarti on rt.equinox.framework by Thomas Watson

2012-03-28 Thread portal on behalf of Thomas Watson
Thomas Watson voted: +1 +1 Voting summary: http://portal.eclipse.org/ ___ equinox-dev mailing list equinox-dev@eclipse.org https://dev.eclipse.org/mailman/listinfo/equinox-dev

[equinox-dev] Vote for Committer status for Markus Keller was started by Thomas Watson

2013-01-10 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message signals that Thomas Watson has nominated Markus Keller as a Committer on the rt.equinox.bundles project. The reason given is as follows: I am nominating Markus Keller as a committer to rt.equinox.bundles to take over the

[equinox-dev] Committer vote for Markus Keller has concluded successfully

2013-01-18 Thread portal on behalf of Thomas Watson
? Martin Lippert ? Kim Moir +1 Glyn Normington +1 Pascal Rapicault +1 John Ross ? Heiko Seeberger +1 Thomas Watson If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev

[equinox-dev] Welcome Markus Keller as a new rt.equinox.bundles Committer

2013-01-18 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Markus Keller. Markus Keller is a new full Committer on the rt.equinox.bundles project. Welcome! ___ equino

[equinox-dev] Welcome John Ross as a new rt.equinox.framework Committer

2013-05-10 Thread portal on behalf of Thomas Watson
rt.equinox.framework Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for John Ross. John Ross is a new full Committer on the rt.equinox.framework project. Welcome! ___ equinox-de

[equinox-dev] Welcome Raymond Auge as a new rt.equinox.bundles Committer

2014-10-03 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Raymond Auge. Raymond Auge is a new full Committer on the rt.equinox.bundles project. Welcome! ___ equinox-

[equinox-dev] Welcome Stefan Xenos as a new rt.equinox.bundles Committer

2015-10-13 Thread portal on behalf of Thomas Watson
rt.equinox.bundles Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Stefan Xenos. Stefan Xenos is a new full Committer on the rt.equinox.bundles project. Welcome! ___ equinox-

[equinox-dev] Committer vote for Mykola Nikishov has concluded unsuccessfully

2016-11-22 Thread portal on behalf of Thomas Watson
? Arun Thondapu ? Teodor Todorov +1 Thomas Watson ? Mike Wilson ? Stefan Xenos ? Meng Xin Zhu If you have any questions, please do not hesitate to contact your project lead, PMC member, or the EMO ___ equinox-dev mailing list

[equinox-dev] Welcome Alexander Kurtakov as a new rt.equinox Committer

2017-05-04 Thread portal on behalf of Thomas Watson
rt.equinox Committers, This automatically generated message marks the completion of all the legal paperwork and webmaster provisioning for Alexander Kurtakov. Alexander Kurtakov is a new full Committer on the rt.equinox project. Welcome! ___ equinox-dev

<    6   7   8   9   10   11