Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-12-10[releng] Bump version to 9.7.0Jonah Graham1-1/+1
Change-Id: Icaa0b6acf73e3a19e0d102fa8ae784e631d8743a
2018-11-24Bug 540373: Update the compiler warnings/ignoresJonah Graham1-1/+1
The previous alignment of all the warnings/ignores led to too many warnings that weren't there before. This commit relaxes them a bit. The core/org.eclipse.cdt.core/.settings/org.eclipse.jdt.core.prefs is still the "master" copy, with releng/scripts/check_code_cleanliness.sh containing the exceptions that apply to test plug-ins. Change-Id: Ibd4e31ade0b42b31e7cbe5a94f06c6fc15183a56
2018-11-23Bug 540373: Cleanup: Remove trailing whitespace in properties filesJonah Graham1-1/+1
Command used: # Remove space at eol in comments find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^(#.*)[ \t]+$/\1/' {} + # Remove space at eol in blank lines find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^[ \t]+$//' {} + # Replace escaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\ $/\1\\u0020/' {} + # Replace unescaped spaces at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\]) $/\1\\u0020/' {} + # Replace escaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\\t$/\1\\u0009/' {} + # Replace unescaped tabs at eol with unicode find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\t$/\1\\u0009/' {} + # Stage all changes git add -A . # trim any remaining whitespace and then identify and fixup # manually # Only dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/MessagesForDebugVM.properties # needed this due to missing newline at end of the file find . ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/[ \t]+$//' {} + Change-Id: I858f16891fe001f4f7e62d5a4f904146e891cd39
2018-11-22Bug 540373: Standard .settings auto appliedJonah Graham5-0/+819
The releng/scripts/apply_jdt_prefs_to_all_projects.sh was run to copy standard settings to all other projects. Change-Id: I4436c947d7f0142f56b709e661379c3eb54f666b
2018-11-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham7-432/+425
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2018-11-20Bug 540373: Normalize newlines with .gitattributesJonah Graham2-35/+35
There is also a new script to verify completeness of .gitattributes: releng/scripts/verify_gitattributes.sh Change-Id: I2ce270852ab54b66b6c474a6ec94203fe5bba78b
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-02-14releng: Make use of Tycho POM-less functionalityMarc-Andre Laperle1-37/+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-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-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-12-16Update to new CDT LogoMarc Khouzam1-0/+0
Change-Id: Iac76b204027efa01c8f848050a36d05022ecdf86 Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com> Reviewed-on: https://git.eclipse.org/r/38363 Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com> Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
2014-07-22Inremented branding plugin version to 8.5Sergey Prigogin2-3/+3
2014-05-20Update to new license textMarc Khouzam1-2/+1
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
2014-01-22Bumped up version number of org.eclipse.cdt.sdk plugin to 8.4.Sergey Prigogin2-2/+2
2014-01-22Adjusted plugin version numbers to not go back compared to CDT 8.2.1.Sergey Prigogin2-2/+2
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-06-28Fixed yet another version mismatch between MANIFEST.MF and pom.xmlSergey Prigogin1-1/+1
2012-06-28Bumped up feature versions for Kepler.Sergey Prigogin1-2/+2
2011-10-20Bumped up CDT version from 8.0 to 8.1 to make it easilySergey Prigogin2-3/+3
distinguishable from the 8.0.x. We may change the version to 9.0 later.
2011-06-28Mavenizing CDT releng.Doug Schaefer1-0/+37
Also removed unsupported cdt.core fragments from the platform feature.
2010-10-21Bug 328403 Update CDT feature/plugin versions for Indigo releaseVivian Kong1-1/+1
2010-06-29Bug 318337 Update CDT feature/plugin versions for Indigo releaseVivian Kong1-1/+1
2010-06-04Prettier 32x32 icon.Doug Schaefer1-0/+0
2010-06-03forgot to put the png into the build.properties. No wonder it didn't show up :PDoug Schaefer1-2/+2
2010-06-03New CDT Icon.Doug Schaefer3-1/+1
2010-05-31update copyright in about and update provider infoVivian Kong1-1/+1
2010-02-09update plugin version to 7.0Vivian Kong1-1/+1
2009-07-21update version numbers for CDT 6.1.0Vivian Kong1-1/+1
2009-05-27update copyrightsVivian Kong1-7/+7
2009-05-26bug 254307 - brandingVivian Kong1-2/+2
2009-04-09bug 268581 individual source bundlesVivian Kong1-2/+2
2009-01-29bug 253574 - removing empty plugin.xmlVivian Kong1-6/+0
2008-11-24Update bundle versionsAnton Leherbauer1-1/+1
2008-06-11copyrightsChris Recoskie1-1/+1
2008-02-17Set singleton to true.Ken Ryall1-1/+1
2007-11-06Upversion plug-ins to 5.0.0Anton Leherbauer1-1/+1
2007-06-18Fix up plugin and feature names and stuff.Doug Schaefer1-1/+1
2007-05-29Bug 189539 - Fix dates on about.html files to reflect projected release date.Doug Schaefer1-1/+1
2006-10-11Upversion to 4.0.0 and fix dependency version ranges (bug 157543)Anton Leherbauer1-1/+1
2006-06-14update copyrightsChris Recoskie1-1/+1
2006-05-24Fixed 77947 - fixed copyright holders in the about box.Doug Schaefer1-1/+1
2006-05-24Updated the about.html files.Doug Schaefer1-15/+17
2006-01-03Trying out the .qualifier version for builds.Doug Schaefer1-1/+1

Back to the top