Skip to content

Commit 8cc1cf4

Browse files
Merge pull request #128 from sbesson/bsd_relicensing
Relicense Bio-Formats examples under BSD 2-clause
2 parents 6a2fb0f + f44a907 commit 8cc1cf4

18 files changed

+310
-509
lines changed

.classpath-template

Lines changed: 0 additions & 20 deletions
This file was deleted.

.mailmap

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
2-
3-
4-
Curtis Rueden <[email protected]> <unknown@unknown>
2+
Curtis Rueden <[email protected]>
3+
4+
55
Jean-Marie Burel <[email protected]>
66
Johannes Schindelin <[email protected]> <[email protected]>
7-
Josh Moore <josh@glencoesoftware.com> <[email protected]>
8-
Kristin Briney <[email protected]>
9-
7+
Josh Moore <josh@openmicroscopy.org> <[email protected]>
8+
9+
1010
11-
Premysl Fiala <[email protected]>
1211
12+
13+
14+
15+

LICENSE.txt

Lines changed: 27 additions & 339 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616
}
1717

1818
dependencies {
19-
implementation group: 'ome', name: 'formats-gpl', version: '7.3.1'
19+
implementation group: 'ome', name: 'formats-bsd', version: '7.3.1'
2020
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.14'
2121
}
2222

pom.xml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
<licenses>
1818
<license>
19-
<name>GNU General Public License v2+</name>
20-
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
19+
<name>Simplified BSD License</name>
20+
<url>https://opensource.org/licenses/BSD-2-Clause</url>
2121
<distribution>repo</distribution>
2222
</license>
2323
</licenses>
2424

2525
<properties>
26-
<formats-gpl.version>7.3.1</formats-gpl.version>
26+
<formats-bsd.version>7.3.1</formats-bsd.version>
2727
<logback.version>1.3.14</logback.version>
2828

2929
<!-- NB: Avoid platform encoding warning when copying resources. -->
@@ -40,8 +40,8 @@
4040
<dependencies>
4141
<dependency>
4242
<groupId>${project.groupId}</groupId>
43-
<artifactId>formats-gpl</artifactId>
44-
<version>${formats-gpl.version}</version>
43+
<artifactId>formats-bsd</artifactId>
44+
<version>${formats-bsd.version}</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>ch.qos.logback</groupId>
@@ -153,6 +153,27 @@
153153
</execution>
154154
</executions>
155155
</plugin>
156+
157+
<plugin>
158+
<groupId>org.codehaus.mojo</groupId>
159+
<artifactId>license-maven-plugin</artifactId>
160+
<version>1.16</version>
161+
<configuration>
162+
<licenseName>bsd_2</licenseName>
163+
<organizationName>Open Microscopy Environment:
164+
- Board of Regents of the University of Wisconsin-Madison
165+
- Glencoe Software, Inc.
166+
- University of Dundee</organizationName>
167+
<projectName>Bio-Formats examples</projectName>
168+
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
169+
<canUpdateDescription>true</canUpdateDescription>
170+
<canUpdateCopyright>false</canUpdateCopyright>
171+
<roots>
172+
<root>src</root>
173+
</roots>
174+
</configuration>
175+
</plugin>
176+
156177
</plugins>
157178
</build>
158179

src/main/java/ExampleSuite.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* #%L
3-
* OME Bio-Formats package for reading and converting biological file formats.
3+
* Bio-Formats examples
44
* %%
55
* Copyright (C) 2016 - 2017 Open Microscopy Environment:
66
* - Board of Regents of the University of Wisconsin-Madison
@@ -9,13 +9,13 @@
99
* %%
1010
* Redistribution and use in source and binary forms, with or without
1111
* modification, are permitted provided that the following conditions are met:
12-
*
12+
*
1313
* 1. Redistributions of source code must retain the above copyright notice,
1414
* this list of conditions and the following disclaimer.
1515
* 2. Redistributions in binary form must reproduce the above copyright notice,
1616
* this list of conditions and the following disclaimer in the documentation
1717
* and/or other materials provided with the distribution.
18-
*
18+
*
1919
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2020
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2121
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE

src/main/java/FileConvert.java

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
11
/*
22
* #%L
3-
* OME Bio-Formats package for reading and converting biological file formats.
3+
* Bio-Formats examples
44
* %%
55
* Copyright (C) 2005 - 2017 Open Microscopy Environment:
66
* - Board of Regents of the University of Wisconsin-Madison
77
* - Glencoe Software, Inc.
88
* - University of Dundee
99
* %%
10-
* This program is free software: you can redistribute it and/or modify
11-
* it under the terms of the GNU General Public License as
12-
* published by the Free Software Foundation, either version 2 of the
13-
* License, or (at your option) any later version.
10+
* Redistribution and use in source and binary forms, with or without
11+
* modification, are permitted provided that the following conditions are met:
1412
*
15-
* This program is distributed in the hope that it will be useful,
16-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
* GNU General Public License for more details.
13+
* 1. Redistributions of source code must retain the above copyright notice,
14+
* this list of conditions and the following disclaimer.
15+
* 2. Redistributions in binary form must reproduce the above copyright notice,
16+
* this list of conditions and the following disclaimer in the documentation
17+
* and/or other materials provided with the distribution.
1918
*
20-
* You should have received a copy of the GNU General Public
21-
* License along with this program. If not, see
22-
* <http://www.gnu.org/licenses/gpl-2.0.html>.
19+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
23+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29+
* POSSIBILITY OF SUCH DAMAGE.
2330
* #L%
2431
*/
2532

src/main/java/FileExport.java

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
11
/*
22
* #%L
3-
* OME Bio-Formats package for reading and converting biological file formats.
3+
* Bio-Formats examples
44
* %%
55
* Copyright (C) 2005 - 2017 Open Microscopy Environment:
66
* - Board of Regents of the University of Wisconsin-Madison
77
* - Glencoe Software, Inc.
88
* - University of Dundee
99
* %%
10-
* This program is free software: you can redistribute it and/or modify
11-
* it under the terms of the GNU General Public License as
12-
* published by the Free Software Foundation, either version 2 of the
13-
* License, or (at your option) any later version.
10+
* Redistribution and use in source and binary forms, with or without
11+
* modification, are permitted provided that the following conditions are met:
1412
*
15-
* This program is distributed in the hope that it will be useful,
16-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
* GNU General Public License for more details.
13+
* 1. Redistributions of source code must retain the above copyright notice,
14+
* this list of conditions and the following disclaimer.
15+
* 2. Redistributions in binary form must reproduce the above copyright notice,
16+
* this list of conditions and the following disclaimer in the documentation
17+
* and/or other materials provided with the distribution.
1918
*
20-
* You should have received a copy of the GNU General Public
21-
* License along with this program. If not, see
22-
* <http://www.gnu.org/licenses/gpl-2.0.html>.
19+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
23+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29+
* POSSIBILITY OF SUCH DAMAGE.
2330
* #L%
2431
*/
2532

src/main/java/FileExportSPW.java

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
11
/*
22
* #%L
3-
* OME Bio-Formats package for reading and converting biological file formats.
3+
* Bio-Formats examples
44
* %%
55
* Copyright (C) 2005 - 2017 Open Microscopy Environment:
66
* - Board of Regents of the University of Wisconsin-Madison
77
* - Glencoe Software, Inc.
88
* - University of Dundee
99
* %%
10-
* This program is free software: you can redistribute it and/or modify
11-
* it under the terms of the GNU General Public License as
12-
* published by the Free Software Foundation, either version 2 of the
13-
* License, or (at your option) any later version.
10+
* Redistribution and use in source and binary forms, with or without
11+
* modification, are permitted provided that the following conditions are met:
1412
*
15-
* This program is distributed in the hope that it will be useful,
16-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
* GNU General Public License for more details.
13+
* 1. Redistributions of source code must retain the above copyright notice,
14+
* this list of conditions and the following disclaimer.
15+
* 2. Redistributions in binary form must reproduce the above copyright notice,
16+
* this list of conditions and the following disclaimer in the documentation
17+
* and/or other materials provided with the distribution.
1918
*
20-
* You should have received a copy of the GNU General Public
21-
* License along with this program. If not, see
22-
* <http://www.gnu.org/licenses/gpl-2.0.html>.
19+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
23+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29+
* POSSIBILITY OF SUCH DAMAGE.
2330
* #L%
2431
*/
2532

src/main/java/GeneratePyramidResolutions.java

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
11
/*
22
* #%L
3-
* OME Bio-Formats package for reading and converting biological file formats.
3+
* Bio-Formats examples
44
* %%
55
* Copyright (C) 2018 Open Microscopy Environment:
66
* - Board of Regents of the University of Wisconsin-Madison
77
* - Glencoe Software, Inc.
88
* - University of Dundee
99
* %%
10-
* This program is free software: you can redistribute it and/or modify
11-
* it under the terms of the GNU General Public License as
12-
* published by the Free Software Foundation, either version 2 of the
13-
* License, or (at your option) any later version.
10+
* Redistribution and use in source and binary forms, with or without
11+
* modification, are permitted provided that the following conditions are met:
1412
*
15-
* This program is distributed in the hope that it will be useful,
16-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
* GNU General Public License for more details.
13+
* 1. Redistributions of source code must retain the above copyright notice,
14+
* this list of conditions and the following disclaimer.
15+
* 2. Redistributions in binary form must reproduce the above copyright notice,
16+
* this list of conditions and the following disclaimer in the documentation
17+
* and/or other materials provided with the distribution.
1918
*
20-
* You should have received a copy of the GNU General Public
21-
* License along with this program. If not, see
22-
* <http://www.gnu.org/licenses/gpl-2.0.html>.
19+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
23+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29+
* POSSIBILITY OF SUCH DAMAGE.
2330
* #L%
2431
*/
2532

0 commit comments

Comments
 (0)