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

Commit 99f284e

Browse files
committed
pom.xml added
1 parent 8323bbd commit 99f284e

File tree

2 files changed

+66
-1
lines changed

2 files changed

+66
-1
lines changed

pom.xml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>biz.source_code</groupId>
4+
<artifactId>base64coder</artifactId>
5+
<name>Base64Coder</name>
6+
<version>2010-02-23</version>
7+
<description>A Base64 encoder/decoder in Java.</description>
8+
<url>http://www.source-code.biz/base64coder/java</url>
9+
<developers>
10+
<developer>
11+
<name>Christian d'Heureuse</name>
12+
<email>chdh@inventec.ch</email>
13+
<timezone>+1</timezone>
14+
<url>http://www.inventec.ch/chdh</url>
15+
<organization>Inventec Informatik AG</organization>
16+
<organizationUrl>http://www.inventec.ch</organizationUrl>
17+
<roles>
18+
<role>architect</role>
19+
<role>developer</role>
20+
</roles>
21+
</developer>
22+
</developers>
23+
<contributors>
24+
<contributor>
25+
<name>...</name>
26+
<email>...</email>
27+
<roles>
28+
<role>mavenizer</role>
29+
</roles>
30+
</contributor>
31+
</contributors>
32+
<scm>
33+
<developerConnection>scm:svn:http:///svn.source-code.biz/base64coder-java/trunk/</developerConnection>
34+
<url>http://svn.source-code.biz/viewvc/base64coder-java/trunk/</url>
35+
</scm>
36+
<organization>
37+
<name>source-code.biz</name>
38+
<url>http://www.source-code.biz/</url>
39+
</organization>
40+
<licenses>
41+
<license>
42+
<name>EPL (Eclipse Public License)</name>
43+
<url>http://www.eclipse.org/legal</url>
44+
<distribution>repo</distribution>
45+
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
46+
</license>
47+
<license>
48+
<name>GNU LGPL (GNU Lesser General Public License)</name>
49+
<url>http://www.gnu.org/licenses/lgpl.html</url>
50+
<distribution>repo</distribution>
51+
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
52+
</license>
53+
<license>
54+
<name>Apache License</name>
55+
<url>http://www.apache.org/licenses</url>
56+
<distribution>repo</distribution>
57+
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
58+
</license>
59+
<license>
60+
<name>BSD License</name>
61+
<url>http://www.opensource.org/licenses/bsd-license.php</url>
62+
<distribution>repo</distribution>
63+
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
64+
</license>
65+
</licenses>
66+
</project>

src/test/java/TestBase64Coder.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,4 @@ public void test3() throws Exception {
6868
assertArrayEquals (b0, b1);
6969
assertArrayEquals (b0, b2); }}
7070

71-
7271
} // end class TestBase64Coder

0 commit comments

Comments
 (0)