Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move product to common #712

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a585769
add wad support
Jan 21, 2004
8bb0d90
update copyrights
Jan 22, 2004
0572392
reorg IProduct and IBundleGroup to be more generic
Jan 26, 2004
01c116d
fix some javadoc
Jan 26, 2004
c997cbf
add IProductProvider, update Javadoc and the schema definition.
Feb 16, 2004
1cf0931
*** empty log message ***
Apr 2, 2004
5f824a6
Javadoc updates and a few todos
Apr 12, 2004
2e3789a
Javadoc updates and a few todos
Apr 12, 2004
4abc58a
Reformat Equinox code according to the Core formatter settings
Apr 16, 2004
07f11a1
Reformat Equinox code according to the Core formatter settings
Apr 16, 2004
9844ab1
Bug 64253 [API] add IProduct.getDefiningBundle()
May 27, 2004
1d46e0d
javadoc fix
May 27, 2004
2bfc2b7
Convert copyrights from CPL to EPL
Feb 21, 2005
b60376f
Convert copyrights from CPL to EPL
Feb 21, 2005
ee4e6af
fixed typos in javadoc
Jun 8, 2005
6123ed6
updated copyrights
Apr 4, 2006
97dfaa0
updated copyrights
Apr 4, 2006
0c4964a
Updated copyrights.
May 10, 2006
6e56a19
Updated copyrights.
May 10, 2006
9b83714
Removed @see to type that may not be present
Aug 16, 2007
28e548d
copyright update
Mar 4, 2009
7d21c7f
Bug 462035 - Solve whitespace issues in eclipse.runtime plug-ins
SimonScholz Mar 16, 2015
dd95c0a
Bug 462035 - Solve whitespace issues in eclipse.runtime plug-ins
SimonScholz Mar 16, 2015
b0c7a5b
Bug 535802 - Update license to EPL-2.0 in our source files
vogella Aug 17, 2018
eabb303
Bug 535802 - Update license to EPL-2.0 in our source files
vogella Aug 17, 2018
bdd4181
Move IProduct to commons
laeubi Dec 4, 2024
4e5c3bf
add IProductProvider, update Javadoc and the schema definition.
Feb 16, 2004
4e2b8b4
Move IProductProvider from platfrom > common
laeubi Dec 4, 2024
2d3f1e1
Add API filter for moved files / bump version
laeubi Dec 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bug 535802 - Update license to EPL-2.0 in our source files
This affects all files except the .exsd , the "org.eclipse.jdt.ui.prefs"
and the pom.xml files.

Regular expression used:

find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec
sed -i  's/Eclipse Public License v1.0/Eclipse Public License 2.0/g' {}
+

find . -type f  ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs"
-exec sed -i -E
's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)http:\/\/www.eclipse.org\/legal\/epl-v10.html/\1\2https:\/\/www.eclipse.org\/legal\/epl-2.0\/\
\1\
\1\2SPDX-License-Identifier: EPL-2.0/' {} +

# Get rid of the All rights reserved
find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" !
-name "pom.xml" -exec sed -i -E
's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)(All rights reserved.
)/\1\n\1\2/' {} +

Change-Id: I9ca35a0f032a75a181f7dc6268989d848a210963
Signed-off-by: Lars Vogel <[email protected]>
vogella authored and laeubi committed Aug 17, 2018
commit b0c7a5b1c1f310177c1924f811bf6129874fc39a
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
/*******************************************************************************
* Copyright (c) 2004, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation