Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c6cb371

Browse files
committed
MIT license added.
1 parent b50acb0 commit c6cb371

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGES.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Base64Coder Changes
33
-------------------
44

5+
2011-07-05 chdh
6+
- MIT license added.
7+
58
2010-12-19 chdh
69
- Maven POM file changed to use the Apache Felix Bundle Plugin in order
710
to generate a OSGi bundle definition in the JAR manifest.
@@ -40,4 +43,4 @@ Base64Coder Changes
4043
- Lincense changed from GPL to LGPL.
4144

4245
2003-07-22 chdh (Christian d'Heureuse)
43-
- Module created.
46+
- Module created.

pom.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,37 @@
1919
<name>EPL (Eclipse Public License), V1.0 or later</name>
2020
<url>http://www.eclipse.org/legal</url>
2121
<distribution>repo</distribution>
22-
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
22+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD+MIT. Please contact the author if you need another license.</comments>
2323
</license>
2424
<license>
2525
<name>GNU LGPL (GNU Lesser General Public License), V2.1 or later</name>
2626
<url>http://www.gnu.org/licenses/lgpl.html</url>
2727
<distribution>repo</distribution>
28-
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
28+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD+MIT. Please contact the author if you need another license.</comments>
2929
</license>
3030
<license>
3131
<name>GNU LGP (GNU General Public License), V2 or later</name>
3232
<url>http://www.gnu.org/licenses/lgpl.html</url>
3333
<distribution>repo</distribution>
34-
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
34+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD+MIT. Please contact the author if you need another license.</comments>
3535
</license>
3636
<license>
3737
<name>Apache License, V2.0 or later</name>
3838
<url>http://www.apache.org/licenses</url>
3939
<distribution>repo</distribution>
40-
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
40+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD+MIT. Please contact the author if you need another license.</comments>
4141
</license>
4242
<license>
4343
<name>BSD License</name>
4444
<url>http://www.opensource.org/licenses/bsd-license.php</url>
4545
<distribution>repo</distribution>
46-
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
46+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD+MIT. Please contact the author if you need another license.</comments>
47+
</license>
48+
<license>
49+
<name>MIT License</name>
50+
<url>http://www.opensource.org/licenses/MIT</url>
51+
<distribution>repo</distribution>
52+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD+MIT. Please contact the author if you need another license.</comments>
4753
</license>
4854
</licenses>
4955

src/main/java/biz/source_code/base64Coder/Base64Coder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// GPL, GNU General Public License, V2 or later, http://www.gnu.org/licenses/gpl.html
1010
// AL, Apache License, V2.0 or later, http://www.apache.org/licenses
1111
// BSD, BSD License, http://www.opensource.org/licenses/bsd-license.php
12+
// MIT, MIT License, http://www.opensource.org/licenses/MIT
1213
//
1314
// Please contact the author if you need another license.
1415
// This module is provided "as is", without warranties of any kind.
@@ -223,4 +224,4 @@ public static byte[] decode (char[] in, int iOff, int iLen) {
223224
// Dummy constructor.
224225
private Base64Coder() {}
225226

226-
} // end class Base64Coder
227+
} // end class Base64Coder

0 commit comments

Comments
 (0)