Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-02-14releng: Make use of Tycho POM-less functionalityMarc-Andre Laperle1-17/+0
This removes a lot of pom.xml from the source tree. This is using the "POM-less" Tycho functionality. See https://wiki.eclipse.org/Tycho/Release_Notes/0.24#POM-less_Tycho_builds One advantage of this is that you do not need to update the version in the pom.xml when you change it in the MANIFEST.MF because the pom.xml is automatically generated. This also reduces a lot of the duplicated information and pom.xml repetition. - Maven 3.3 and up is required. - Only eclipse-plugins and eclipse-features can be pom-less. Repositories, target and others still have pom.xml. - New parent poms are added because a parent is necessary directly one level above the plug-in/feature that will have its pom generated - Some test plug-ins had to be renamed .test -> .tests because it's required so that it detects that it's a test plug-in - Some suites were renamed so that they all use the same consistent name "AutomatedIntegrationSuite" - Profiles were added for the more common test configurations. They are activated by the presence of simple .properties files that only serve to activate the correct profile. The profiles: - One for UI tests (UI present and start in UI thread) - One for SWTBot tests (UI present and do not start in UI thread) Other test plug-ins that are too different are kept intact and still have a pom.xml - Fragments are kept intact since they all have different target platform configurations Change-Id: I9d73380eb766f547830c552daf08053a30b1845c Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2016-11-16Update version to 9.3.0Marc Khouzam1-1/+1
Change-Id: Ic953ccc5d38ff3661ca44de21ed8c4b7dad5b246
2016-11-15Update version to 9.2.0Marc Khouzam1-1/+1
Change-Id: I36ad4218b20b8ea70584c89f5be45c757bf4c714
2016-08-17Update version to 9.1.0Marc Khouzam1-1/+1
This commit used the script releng/scripts/ChangeFeaturesVersion.sh Change-Id: I8274a6e8dd5c0f1e450f07952e138b265a441a62
2016-06-30Remove old .cvsignore filesMarc Khouzam1-1/+0
Change-Id: Ia66de47055a15d94c0aa45d1198f0a9e78d82ad0
2016-06-22Move the rest of the CDT plugins to java 8Marc Khouzam3-5/+5
This change was generated using the script: releng/scripts/ChangeJavaVersion.sh Change-Id: I2ad96dc682a5acb8529c3edec40de279c331b5a4
2016-04-22Bug 492200 - Replace StringBuffer with StringBuilderAlex Blewitt2-12/+12
There are many opportunities for replacing `StringBuffer` with `StringBuilder` provided that the type isn't visible from the public API and is used only in internal methods. Replace these where appropriate. Change-Id: Ic2f50c5b6f3c3a4eae301bb3b40fb6faed235f79 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-04-16Bug 491825 - Remove primitive wrapper creationAlex Blewitt2-4/+4
Using `new Integer` and other wrapper types such as `new Character` results in potential extra heap utilisation as the values are not cached. The built-in `Integer.valueOf` will perform caching on numbers in the range -128..127 (at least) using a flyweight pattern. In addition, parsing `int` values can be done with `Integer.parseInt` which avoids object construction. Adjust tests such as `"true".equals(expr)` to `Boolean.parseBoolean(expr)`. Change-Id: I0408a5c69afc4ca6ede71acaf6cc4abd67538006 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-03-29Code cleanup in DSF examples. Jesper Eskilson1-26/+27
- Added @Override where necessary. - Added src_ant to source directories in build.properties - Fixed resource leaks - Added type parameters where missing (e.g. Vector in PreProcessor.java) - Removed unused imports Change-Id: I28c7e295891833f9b561975da0adc92d55f2e048 Signed-off-by: Jesper Eskilson <jesper.eskilson@iar.com>
2016-01-18Incremented CDT features version to 9.0.0Marc Khouzam1-1/+1
This includes bumping the standalone debugger to 9.0.0 Change-Id: I55fae1cec995b5f6865a5b174c004ed1b76e9bea
2016-01-04Fix copyright of all CDT plugins using the copyright tool from platform.Marc Khouzam19-19/+19
This commit does not add missing copyrights, just updates the date on the existing ones. Change-Id: I646f5afd533a1fcc539bdf2e0686b22f406ecf65
2015-08-10Fixed a couple of FindBugs errors in DSF examples.Jesper Eskilson2-0/+10
Change-Id: Ibce2e1ec4f128900989c1420488bf2d1d636e6fc Signed-off-by: Jesper Eskilson <jesper.eskilson@iar.com>
2015-06-10Incremented CDT feature version to 8.8.0Marc Khouzam1-1/+1
Change-Id: Ib1189a08a5f0225fd676b682dc8a10477ad3acc5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-05-05Incremented CDT feature version to 8.7.0Marc Khouzam1-1/+1
Change-Id: Ife0feaaa9263d2b7797e31d628250bd26caff1b5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Move some leftover plugins from Java 5 to Java 7.Marc Khouzam18-63/+212
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-03-25Add many missing @Override to remove warningsMarc Khouzam1-2/+4
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-01-07Incremented CDT feature version to 8.6.0.Sergey Prigogin1-1/+1
Change-Id: Ic90c8e6a68d21e5b90ec3fac997da6a95a29bedf Signed-off-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> Reviewed-on: https://git.eclipse.org/r/39066 Tested-by: Hudson CI
2014-10-29Bug 439624 - Per-element formatting for expressions and variablesMarc Khouzam1-10/+8
Change-Id: I25d2c0656d9a21b74693d459e66c0fbe4131038d Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/30192 Tested-by: Hudson CI Reviewed-by: Alvaro Sanchez-Leon <alvsan09@gmail.com>
2014-07-22Inremented branding plugin version to 8.5Sergey Prigogin1-1/+1
2014-07-07Bug 344739 - RejectedExecutionException when terminating a PDA launch Marc Khouzam1-1/+8
Change-Id: I28cdfcd9aef6c7ece39c29b82459825698dc71bc Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/29488
2014-01-21Bumped up CDT version to 8.4.Sergey Prigogin1-1/+1
Change-Id: I1229344feaaed4a3551ceb7b1ef1410545048b55 Reviewed-on: https://git.eclipse.org/r/20908 Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com> Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
2013-08-27Fixed parent pom version to referenceAndrew Gvozdev1-1/+1
2012-10-30DSF - Added support for arrays in PDA example.Pawel Piech3-5/+87
2012-06-28Bumped up feature versions for Kepler.Sergey Prigogin1-1/+1
2012-04-03Bug 374512 - breakpointContribution does not support customPawel Piech1-3/+49
field editors Also addresses: Bug 374514 - breakpointContribution always add Widgets on top of common properties page Bug 374508 - breakpointContribution does not support restrictions
2012-02-08Bug 360280 - [breakpoints] Reposition breakpoints when planted on invalid ↵Pawel Piech4-17/+117
line (PDA Example - Added updating of C Breakpoint status to set installed flag and update line number)
2011-10-20Version number changes missed in the previous commit.Sergey Prigogin1-1/+1
2011-10-20Updated parent feature version in pom.xml files.Sergey Prigogin1-1/+1
2011-06-28Mavenizing CDT releng.Doug Schaefer1-0/+17
Also removed unsupported cdt.core fragments from the platform feature.
2010-07-14bug 319777: Restored 1.2 as it does not compile with Java 1.5Andrew Gvozdev1-2/+0
2010-07-14bug 319777: Missing @Override annotationsAndrew Gvozdev1-0/+2
patch from Petri Tuononen
2010-06-03Bug 315439 Fix up copyrightVivian Kong51-51/+51
2010-01-05[298909] - [launch] DSF suspend trigger susceptible to race conditionsPawel Piech3-4/+13
2009-10-07Bug 291342 - [debug view] DSF session executor intermittently deadlocks ↵Pawel Piech1-1/+2
during session termination
2009-09-03[288553] - Change DSF plugins' version to 2.1.Pawel Piech1-1/+1
2009-08-04I removed the no longer supported nore required getModelData() routine. This ↵Randy Rohrbach1-22/+0
is just cleanup in the example. I have not taken the time to create a bugzilla for this. Randy
2009-06-25[281585] - [pda] Refactor of PDA's IAdapterFactory implementation.Pawel Piech3-2/+13
2009-05-27update copyrightsVivian Kong7-47/+47
2009-05-26bug 254307 - brandingVivian Kong1-1/+1
2009-03-31Fixed range of supported number formats in PDA.Pawel Piech1-3/+3
2009-03-19Add a threads sample.Pawel Piech1-0/+23
2009-03-17[269048] - [pda][run control] The suspend command is not enabled on the ↵Pawel Piech1-1/+1
thread when it's running.
2009-03-16Fix PDA plugin messages.Pawel Piech1-1/+2
2009-03-16Fix PDA source lookup bug.Pawel Piech1-1/+1
2009-03-13Defect 225650, additional tweaking.Randy Rohrbach1-1/+1
2009-03-13Attempt to get PDA working in binary plugin.Pawel Piech1-1/+7
2009-03-13[254200] - Localization - ICU4JPawel Piech1-1/+1
2009-03-13Localization - ICU4JPawel Piech1-0/+1
2009-03-12[266588] - Removed deprecated methods.Pawel Piech3-41/+0
2009-02-26partial fix for Bugzilla 265882Randy Rohrbach1-2/+1

Back to the top