Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2022-04-11[releng] Bump versions for 10.7.0Jonah Graham1-1/+1
Change-Id: Ibada1ef26f47f4238ae64f53fb67a73125534347
2022-01-12[releng] Bump to CDT version 10.6.0Jonah Graham1-1/+1
Change-Id: I28629cdfb0906ce7f1b33a88cbbd55521afc8f6b
2021-09-27[releng] Prepare for CDT 10.5.0Jonah Graham1-1/+1
Change-Id: I9b72edf4a0ff0771a147934dd7f1c92ba1ee799a
2021-06-13[releng] Bump to CDT version 10.4.0Jonah Graham1-1/+1
Change-Id: I0807f46d9ebb8bb579b687366cdb19e40935a9ec
2021-04-04Bug 572552 - CDT releng: update versions to 10.3.0Alexander Fedorov1-1/+11
Added missed license headers Updated baseline for the parent pom to CDT 10.2 Updated version for pom.xml to 10.3 Updated version for features and bundles to CDT 10.3 Updated copyright for about.properties to be 2021 Incremented version + 100 where needed Change-Id: I79666fcc0402fee6607499d7dce1eaf87a5f446d Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
2020-12-19[releng] Increment feature and related versions to 10.2.0Jonah Graham1-1/+1
Change-Id: Icd135a588920fa25fd846dc285db5f83e5ac7037
2020-10-06[releng] Bump version to 10.1.0Jonah Graham1-1/+1
Change-Id: I39f7c379c0b43c086a25b047b3af564f6f24d670
2020-08-31Bug 563494: Remove freemarker java11 workaroundJonah Graham1-8/+0
Change-Id: I7fc259ff13f7d44b1aa29c6842db6d744cffcc9e
2020-08-31Bug 566511: [releng] Add missing UTF-8 encoding for all CDT projectsJonah Graham1-0/+2
Includes updates to code cleanliness script Change-Id: Ic495124285e3e002993f34dc12be5ad7337fe13b
2020-04-11[releng] Bump version to 10.0.0Jonah Graham1-1/+1
Change-Id: I32f6f61835bdbad3cffd713965045c5097c8619f
2020-03-22[releng] Bump CDT version to 9.12.0Marco Stornelli1-1/+1
org.eclipse.cdt.debug.gdbjtag is bumped because of Bug 561343 Change-Id: I6dac283b7e9093662f57ac5c804021c4201ad6f1
2020-01-09Bug 558827: Add and/or fix branding on all featuresJonah Graham1-0/+1
Change-Id: I6d8b1ae2416ed673d18e7e15500dcc7c8a87786d
2019-12-07[releng] Bump to CDT version 9.11.0Jonah Graham1-1/+1
Change-Id: If729509efbddc71adb565e224437b76089d6e099
2019-10-16[releng] Bump to CDT version 9.10.0Jonah Graham1-1/+1
Change-Id: I027e7e5542fda3e599ee476814593fc4b464adca
2019-06-11[releng] Bump version to 9.9.0Jonah Graham1-1/+1
Change-Id: I6641e51a8bfdb44fa5c646d97debf2bf814c107a
2019-03-01[releng] Bump version to 9.8.0Jonah Graham1-1/+1
Change-Id: I3861d4c5d0eecaf9dd370f269a655e666b60561a
2018-12-11Bug 542644 - Add fragment for Java 11 JAXB dependenciesJonah Graham1-0/+8
Change-Id: I3c723dffb693998f3b57067b0973ff7b52c2c8d2
2018-12-10[releng] Bump version to 9.7.0Jonah Graham1-1/+1
Change-Id: Icaa0b6acf73e3a19e0d102fa8ae784e631d8743a
2018-11-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham1-6/+9
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2018-11-22Bug 540371: normalize files before applying EPLv2Jonah Graham1-1/+6
Change-Id: I8bfd427bba1df18579d6d5e58ad1e5d704485050
2018-06-05[releng] Bump version to 9.6.0Jonah Graham1-1/+1
Change-Id: I1618eaeab14b421155af733a73e36f6e37ea0b85
2018-02-13[releng] Bump version to 9.5.0Jonah Graham1-1/+1
Change-Id: Ie342f02f7aae633f41a7ab7d39c21e056793a04a
2017-09-11Update feature versions to CDT 9.4.Doug Schaefer1-1/+1
Also remove remaining pom.xmls for feature projects. Change-Id: I78d6335f92d70ad2699b8a25801ff72d2935aefe
2017-02-14releng: Make use of Tycho POM-less functionalityMarc-Andre Laperle1-18/+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 Khouzam2-3/+3
Change-Id: Ic953ccc5d38ff3661ca44de21ed8c4b7dad5b246
2016-11-15Update version to 9.2.0Marc Khouzam2-3/+3
Change-Id: I36ad4218b20b8ea70584c89f5be45c757bf4c714
2016-08-17Update version to 9.1.0Marc Khouzam2-3/+3
This commit used the script releng/scripts/ChangeFeaturesVersion.sh Change-Id: I8274a6e8dd5c0f1e450f07952e138b265a441a62
2016-04-25Bug 492210 - Remove ChangeLog files from projectAlex Blewitt1-138/+0
ChangeLog is an archaic format for identifying what has changed in a project. Fortunately more powerful version control systems are capable of generating this information and displaying information such as this paragraph in order to determine what has changed in a project and when. Change-Id: Ia71a05fa51869c1adb193d94f71c28b3b36beb37 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2016-01-18Incremented CDT features version to 9.0.0Marc Khouzam2-3/+3
This includes bumping the standalone debugger to 9.0.0 Change-Id: I55fae1cec995b5f6865a5b174c004ed1b76e9bea
2015-11-13autotools: Drop old Linux Tools compat bundle.Alexander Kurtakov1-7/+0
People that would have migrated did it in the last 4 years it is no longer even known whether this is of any use anymore so better to drop it now that there is major release on the horizon. Change-Id: Ic68606582b426be10125fe6a6de345358fc57755 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-06-10Incremented CDT feature version to 8.8.0Marc Khouzam2-3/+3
Change-Id: Ib1189a08a5f0225fd676b682dc8a10477ad3acc5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-05-05Incremented CDT feature version to 8.7.0Marc Khouzam2-3/+3
Change-Id: Ife0feaaa9263d2b7797e31d628250bd26caff1b5 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2015-01-07Incremented CDT feature version to 8.6.0.Sergey Prigogin2-3/+3
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-09-24Bug 443965 - Move update site fromMarc Khouzam1-3/+1
build/org.eclipse.cdt.autotools-feature/p2.inf to releng/org.eclipse.cdt-feature Change-Id: I2827c4d96ff7cd70f752d5619caa82e8450c3048 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/33707 Tested-by: Hudson CI Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2014-07-22Inremented feature version to 8.5.Sergey Prigogin2-3/+3
2014-05-26Bug 435309 - Use the shared license file scheme for CDTMarc Khouzam5-555/+4
This means that: - feature.xml files now make a reference to the shared license plugin using version 0.0.0 - feature.properties files no longer have the text for the license - license.html and epl-v10.html files are removed as they are part of the shared license plugin - build.properties files no longer reference removed files - the main pom.xml file references the license repository Change-Id: Ibd880480de3a07597084d44cce7b822903509079 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/27250
2014-05-20Update to new license textMarc Khouzam1-2/+1
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2014-05-02Update license.html files for 2014 versionMarc Khouzam1-106/+49
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2014-01-21Bumped up CDT version to 8.4.Sergey Prigogin2-3/+3
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-10-24bug 420287: CDT features are scattered around in update managerAndrew Gvozdev1-1/+1
2013-09-03Update p2 update site url to kepler in autotools featureMarc-Andre Laperle1-2/+2
Change-Id: I91554032c368b9c0fb4bd4d53cb7a7493b91fd0a Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Reviewed-on: https://git.eclipse.org/r/16078 Reviewed-by: Jeff Johnston <jjohnstn@redhat.com> IP-Clean: Jeff Johnston <jjohnstn@redhat.com> Tested-by: Jeff Johnston <jjohnstn@redhat.com>
2013-08-23Bumped up feature version to 8.3.Sergey Prigogin2-3/+3
2012-10-17Bug 391390 : Updatesite url is indigomhussein2-6/+2
Removed all update site urls from all feature.xml files based on Martin's suggestion in http://dev.eclipse.org/mhonarc/lists/cdt-dev/msg25067.html that refers to https://bugs.eclipse.org/bugs/show_bug.cgi?id=380633 Change-Id: Idb326ff9f1d8187088345d91d2d0c7c98c227d9e Reviewed-on: https://git.eclipse.org/r/8092 Reviewed-by: Marc Khouzam <marc.khouzam@ericsson.com> IP-Clean: Marc Khouzam <marc.khouzam@ericsson.com> Tested-by: Marc Khouzam <marc.khouzam@ericsson.com>
2012-06-28Bumped up feature versions for Kepler.Sergey Prigogin2-4/+4
2012-03-20Add org.eclipse.linuxtools.cdt.autotools to autotools featureMarc-Andre Laperle1-0/+7
2012-03-12Bug 368069 - RFE: Contribute Autotools plug-ins to the CDTJeff Johnston10-0/+881

    Back to the top