Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit e39721c

Browse files
author
Julien Ponge
committed
Upgrading to the EPLv2
1 parent 21fd6d9 commit e39721c

File tree

356 files changed

+2260
-2518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

356 files changed

+2260
-2518
lines changed

LICENSE

+245-171
Large diffs are not rendered by default.

LICENSE-headers

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
The source code and documentation are released under the terms of the EPL:
22

3-
Copyright (c) {DATE} {INITIAL COPYRIGHT OWNER} {OTHER COPYRIGHT OWNERS}.
3+
Copyright (c) {date} {owner}[ and others]
44

5-
All rights reserved. This program and the accompanying materials
6-
are made available under the terms of the Eclipse Public License v1.0
7-
which accompanies this distribution, and is available at
8-
http://www.eclipse.org/legal/epl-v10.html
5+
This program and the accompanying materials are made available under the
6+
terms of the Eclipse Public License 2.0 which is available at
7+
http://www.eclipse.org/legal/epl-2.0.
8+
9+
SPDX-License-Identifier: EPL-2.0
910

1011
Code samples are made available under the more liberal BSD-style Eclipse Distribution License:
1112

12-
Copyright (c) {DATE} {INITIAL COPYRIGHT OWNER} {OTHER COPYRIGHT OWNERS}.
13+
Copyright (c) {date} {owner}[ and others]
1314

1415
All rights reserved. This Example Content is intended to demonstrate
1516
usage of Eclipse technology. It is provided to you under the terms and

NOTICE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
This content is produced and maintained by the Eclipse Golo project.
2+
3+
* Project home: https://projects.eclipse.org/projects/technology.golo
4+
5+
Eclipse Golo, and Golo are trademarks of the Eclipse Foundation. Eclipse, and
6+
the Eclipse Logo are registered trademarks of the Eclipse Foundation.
7+
8+
== Declared Project Licenses
9+
10+
This program and the accompanying materials are made available under the
11+
terms of the Eclipse Public License 2.0 which is available at
12+
http://www.eclipse.org/legal/epl-2.0.
13+
14+
SPDX-License-Identifier: EPL-2.0
15+
16+
== Source Code
17+
18+
The project maintains the following source code repositories:
19+
20+
* https://github.com/eclipse/golo-lang
21+
22+
== Cryptography
23+
24+
Content may contain encryption software. The country in which you are currently
25+
may have restrictions on the import, possession, and use, and/or re-export to
26+
another country, of encryption software. BEFORE using any encryption software,
27+
please check the country's laws, regulations and policies concerning the import,
28+
possession, or use, and re-export of encryption software, to see if this is
29+
permitted.

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,13 @@ Of course you can combine profiles, like:
103103

104104
## License
105105

106-
Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA-Lyon) and contributors
107-
108-
All rights reserved. This program and the accompanying materials
109-
are made available under the terms of the Eclipse Public License v1.0
110-
which accompanies this distribution, and is available at
111-
http://www.eclipse.org/legal/epl-v10.html
106+
Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA Lyon) and others
107+
108+
This program and the accompanying materials are made available under the
109+
terms of the Eclipse Public License 2.0 which is available at
110+
http://www.eclipse.org/legal/epl-2.0.
111+
112+
SPDX-License-Identifier: EPL-2.0
112113

113114
## Contributing
114115

build.gradle

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/*
2-
* Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA-Lyon)
2+
* Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA Lyon) and others
33
*
4-
* All rights reserved. This program and the accompanying materials
5-
* are made available under the terms of the Eclipse Public License v1.0
6-
* which accompanies this distribution, and is available at
7-
* http://www.eclipse.org/legal/epl-v10.html
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License 2.0 which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* SPDX-License-Identifier: EPL-2.0
89
*/
910

1011
// .................................................................................................................. //
@@ -313,8 +314,8 @@ publishing {
313314
}
314315
licenses {
315316
license {
316-
name 'Eclipse Public License - v 1.0'
317-
url 'http://www.eclipse.org/legal/epl-v10.html'
317+
name 'Eclipse Public License - v 2.0'
318+
url 'https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html'
318319
distribution 'repo'
319320
}
320321
}

doc/golo-guide.adoc

+7-6
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,18 @@ This is the documentation for the Golo programming language.
1313

1414
.Copyright and License Notice
1515
----
16-
Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA-Lyon)
16+
Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA Lyon) and others
1717
18-
All rights reserved. This program and the accompanying materials
19-
are made available under the terms of the Eclipse Public License v1.0
20-
which accompanies this distribution, and is available at
21-
http://www.eclipse.org/legal/epl-v10.html
18+
This program and the accompanying materials are made available under the
19+
terms of the Eclipse Public License 2.0 which is available at
20+
http://www.eclipse.org/legal/epl-2.0.
21+
22+
SPDX-License-Identifier: EPL-2.0
2223
----
2324

2425
.Copyright and License Notice for the short code snippets and samples provided in this documentation.
2526
----
26-
Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA-Lyon)
27+
Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA Lyon)
2728
2829
All rights reserved. This Example Content is intended to demonstrate
2930
usage of Eclipse technology. It is provided to you under the terms and

epl-v10.html

-261
This file was deleted.

0 commit comments

Comments
 (0)