Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-06-22Bug 517929 - Update POMs in the master for 4.8 release I20170622-0950Alexander Kurtakov1-1/+1
Point to 4.8 parent pom. Change-Id: I1620cbf3b7a5520257c374f1c57f16311e0a4b63 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2017-05-16Bug 516457: Many of plug-ins need a version increaseY20170525-1000Y20170523-0000Y20170518-1000S4_7_0_RC2S4_7_0_RC1I20170529-0800I20170528-2000I20170528-0800I20170527-1500I20170527-0800I20170526-2000I20170524-2000I20170524-0800I20170523-2000I20170523-0800I20170522-2000I20170522-0800I20170521-2000I20170521-0800I20170520-1500I20170518-1030I20170518-0830I20170518-0500I20170517-2000I20170517-0800I20170516-2000Thomas Watson2-2/+2
Need to update minor versions for when BREE increased Change-Id: I3120449b05a17aba070f062e108fd9704cf6ae00 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2017-04-28Bug 515878 - [regression] Validation error: org.eclipse.jetty.httpThomas Watson1-1/+1
missing constraint Change-Id: I50406b3a4cd1ff232bafc7f69f971757f26dd93f Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2017-01-18Bug 510641 - Remove old Headers implementation.Thomas Watson2-4/+4
Change-Id: Ibc09bc478f68516c692c95181081a08781024ed5 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2017-01-05Bug 509973 - Comparator errors in I20170105-0320Y20170105-1040Y20170105-1000I20170111-0200I20170110-2000I20170109-2000I20170108-2000I20170107-2000I20170106-2000I20170105-2000Thomas Watson1-0/+3
Change-Id: Ic611932c4408d41f72f33d713c9554e367334eeb Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2017-01-03Bug 509876 - PlatformAdmin read-only state uses wrong timestamp forI20170105-0320I20170105-0230I20170104-2000I20170104-0800I20170103-2000Thomas Watson1-2/+2
State.getTimeStamp() Change-Id: I42c703cfec338f7eb1950d5d9c4d0c222fe792eb Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-12-16Bug 509351 - org.eclipse.osgi.compatibility.state needs version increaseI20161219-0145I20161218-2000I20161217-2000I20161216-2000Thomas Watson2-2/+2
for oxygen Change-Id: Id12c2fbdd2c5aeca0313d6c961aa44158aeb6701 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-11-30Bug 507115 - NPE in ResolverImpl.unresolveBundle after importing pluginsY20161201-1000I20161201-0800I20161130-2000Andrey Loskutov1-4/+10
into workspace Change-Id: I0a7ed9b6460b493344a485b9a4d64f4455abbf5c Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2016-09-29Bug 502425 - Refactor code for Java 7Thomas Watson22-261/+260
Change-Id: I64d3a28a743a0292db27fd421294421dc51eb2e1 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-09-29Bug 502425 - Move Equinox Framework up to Java 7Thomas Watson3-6/+12
Change-Id: I2dd55f8926f6d3fe4c15c664b0cc839545711bc1 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-09-08Bug 501063 - Use constructor in favor of Throwable.initCause(...)Y20160908-1000I20160913-0800I20160912-2000I20160912-1005I20160912-0800I20160912-0430I20160912-0225I20160912-0140I20160911-2015Andreas Sewe1-7/+7
Change-Id: I8e8dde9b777054ea62c5e6d0ce38191d50bf8c92 Signed-off-by: Andreas Sewe <andreas.sewe@codetrails.com>
2016-08-30Bug 492890 - Must escape values in a Bundle-NativeCode header when theyY20160901-1000I20160906-0800Thomas Watson1-2/+34
have special filter characters Change-Id: Ia10e30ac0090f92297196d1ace0ba19c5b454ee5 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-06-28Bug 496465 - Prep for 4.7 (Oxygen) and 4.6.1 (Neon.1) maintenance buildsThomas Watson1-1/+1
Change-Id: I141bdbfacdcfbc14a5f138669f71ba6fb84f47a8 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2016-05-04Bug 493004 - Need to update versions for Neon of various bundlesI20160504-2000Thomas Watson2-2/+2
Change-Id: Ifcdaec083a338863e480f3fa553ba607106d6628 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2015-07-09Bug 470527 - Replace `new Boolean` with `Boolean.valueOf`I20150714-0800Alex Blewitt1-2/+2
Using `new Boolean()` results in the creation of a new object on the heap, when the flyweight `Boolean.TRUE` and `Boolean.FALSE` are available. Java 1.4 added a `Boolean.valueOf()` which can be used in place of `new Boolean()` but which will use the existing flyweight values instead. Globally change `new Boolean(...)` to `Boolean.valueOf(...)` and replace constant valued expressions with their flyweight counterparts. Defer changes to `org.osgi.util.xml.XMLParserActivator` to upstream OSGi. Bug: 470527 Change-Id: I122e4456a49e8eee9d88db0a3237f7e6b19a8469 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-07-02Bug 469765 - Prep for 4.6 (Neon) and 4.5 (Mars) maintenance buildsI20150707-0800Thomas Watson1-1/+1
- update parent poms for 4.6
2015-04-02Bug 463808 - Fix more warnings in rt.equinox.framework projectsSzymon Ptaszkiewicz1-3/+3
Change-Id: Iff0856404654b19373a998999cc36488e637899b Signed-off-by: Szymon Ptaszkiewicz <szymon.ptaszkiewicz@pl.ibm.com>
2014-07-08Bug 438652 - NPE when exporting a bundle with 'Deployable Plug-ins andHEADmasterThomas Watson1-1/+1
Fragments' - Need to update version in pom.xml files
2014-07-02Bug 438652 - NPE when exporting a bundle with 'Deployable Plug-ins andI20140708-0800Thomas Watson2-4/+4
Fragments' - Fixed by using empty collection when platform properties do not contain values for osname or processor Change-Id: Ia699723db6a054cfbfd39068a84d84e83ba72024 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
2014-06-19Bug 436736 - Prep for 4.5 (Mars) and 4.4 maintenance buildsI20140701-0800Paul Webster1-1/+1
Update parent versions from 4.4.0 to 4.5.0 Signed-off-by: Paul Webster <pwebster@ca.ibm.com>
2014-04-03Bug 431951 - compatibility state does not support R3 bundlesThomas Watson2-17/+27
- Fix by checking for symbolic name
2014-02-17Bug 426492 - Missing dependency message from Equinox got worseI20140218-0800Thomas Watson2-422/+5
2014-01-10Bug 421604 - Enhance the Resolver debug logs to ease the investigationMichael Adada1-2/+32
of conflicts. Added a new debug option "org.eclipse.osgi/resolver/conflicts" to print out detailed information regarding initial conflicts during the resolution process. Change-Id: Iec103cabc9f6cbfd56d32c1e572a222d56c6e8fe Signed-off-by: Michael Adada <michael.adada@softwareag.com> Conflicts: bundles/org.eclipse.osgi.compatibility.state/src/org/eclipse/osgi/internal/module/ResolverImpl.java Change-Id: Ib905852ec38a219ae1e7e535da1e53fdb08a16e4
2013-10-23Bug 418663 - [compatibility.state] Get rid of compile warnings in official buildI20131023-2000John Ross16-53/+53
Update jdt core prefs to org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=disabled. Remove @SuppressWarnings annotations. Add or keep @SuppressWarnings where necessary. Parameterize Collections.empty*** methods rather than using Collections.EMPTY_*** fields. Genericize the code. Update copyrights.
2013-09-06Move Msg messages class to org.eclipse.osgi.internal.messagesThomas Watson1-1/+1
2013-09-06Move Tokenizer to org.eclipse.osgi.internal.utilThomas Watson1-2/+2
2013-08-30Bug 416097 - Platform.getPlatformAdmin().getState(false) returns unresolved ↵Thomas Watson4-9/+231
State
2013-08-22Bug 415464 - 13 compile warnings in official buildThomas Watson1-8/+10
2013-08-21Bug 415464 - 13 compile warnings in official buildThomas Watson2-6/+5
2013-08-12Bug 411718 - ConcurrentModificationException in ↵I20130813-1330I20130813-1200I20130813-0800Thomas Watson1-5/+7
org.eclipse.osgi.internal.resolver.StateWriter.writeList
2013-06-24Bug 411169 - Update parent POMs for LunaPaul Webster1-1/+1
2013-05-07Call platformAdmin.stop when stopped.Thomas Watson1-1/+1
2013-05-02Translate headers and add about.html.Thomas Watson4-2/+37
2013-04-04Allow Equinox construct to take Map<String, ?> as configurationThomas Watson1-2/+2
2013-04-04update poms for new framework.Thomas Watson1-0/+24
2013-02-26Use an Equinox specific header for extension activator.Thomas Watson1-1/+1
2013-02-26Fix Native code processing for PDE build.Thomas Watson1-16/+22
2013-02-21Merge branch 'master' into twatson/containerThomas Watson1-3/+3
Conflicts: bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/security/BaseSecurityTest.java bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/loader/BundleLoader.java bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/loader/buddy/PolicyHandler.java bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/log/EquinoxLogServices.java bundles/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/BundleHost.java
2013-02-07Do not require DS for compatibility stateThomas Watson5-13/+37
2012-12-13Fix compile error for renamed locking methods.Thomas Watson1-2/+2
2012-11-12Merge branch 'master' into twatson/containerMergeThomas Watson4-49/+68
Conflicts: bundles/org.eclipse.osgi/defaultAdaptor/src/org/eclipse/osgi/baseadaptor/BaseData.java
2012-10-02Fix compile errors after refactoring org.eclipse.osgi.Thomas Watson4-25/+37
2012-10-02Initial work on the PlatformAdmin implementationThomas Watson5-356/+696
2012-10-02Add copyrightsThomas Watson2-0/+18
2012-10-02Initial checkin of PlatformAdmin service componentThomas Watson5-2/+400
2012-10-02organize imports and set project settingsThomas Watson14-34/+523
2012-10-02initial checking of compatibility state fragmentThomas Watson46-0/+13195

    Back to the top