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

Commit 5a9fe7b

Browse files
committed
Changes for publishing Maven artefacts.
1 parent 7f4683b commit 5a9fe7b

File tree

1 file changed

+99
-35
lines changed

1 file changed

+99
-35
lines changed

pom.xml

Lines changed: 99 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,130 @@
11
<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+
23
<modelVersion>4.0.0</modelVersion>
34
<groupId>biz.source_code</groupId>
45
<artifactId>base64coder</artifactId>
6+
<version>2010-09-21</version>
7+
<packaging>jar</packaging>
58
<name>Base64Coder</name>
6-
<version>2010-02-23</version>
79
<description>A Base64 encoder/decoder in Java.</description>
810
<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>
11+
3612
<organization>
3713
<name>source-code.biz</name>
3814
<url>http://www.source-code.biz/</url>
3915
</organization>
16+
4017
<licenses>
4118
<license>
42-
<name>EPL (Eclipse Public License)</name>
19+
<name>EPL (Eclipse Public License), V1.0 or later</name>
4320
<url>http://www.eclipse.org/legal</url>
4421
<distribution>repo</distribution>
45-
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
22+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
23+
</license>
24+
<license>
25+
<name>GNU LGPL (GNU Lesser General Public License), V2.1 or later</name>
26+
<url>http://www.gnu.org/licenses/lgpl.html</url>
27+
<distribution>repo</distribution>
28+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
4629
</license>
4730
<license>
48-
<name>GNU LGPL (GNU Lesser General Public License)</name>
31+
<name>GNU LGP (GNU General Public License), V2 or later</name>
4932
<url>http://www.gnu.org/licenses/lgpl.html</url>
5033
<distribution>repo</distribution>
51-
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
34+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
5235
</license>
5336
<license>
54-
<name>Apache License</name>
37+
<name>Apache License, V2.0 or later</name>
5538
<url>http://www.apache.org/licenses</url>
5639
<distribution>repo</distribution>
57-
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
40+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
5841
</license>
5942
<license>
6043
<name>BSD License</name>
6144
<url>http://www.opensource.org/licenses/bsd-license.php</url>
6245
<distribution>repo</distribution>
63-
<comments>Base64Coder is multi-licensed, EPL+LGPL+AL+BSD. Please contact the author if you need another license.</comments>
46+
<comments>Base64Coder is multi-licensed, EPL+LGPL+GPL+AL+BSD. Please contact the author if you need another license.</comments>
6447
</license>
6548
</licenses>
49+
50+
<scm>
51+
<url>http://svn.source-code.biz/viewvc/base64coder-java/trunk/</url>
52+
<connection>scm:svn:http://svn.source-code.biz/base64coder-java/trunk/</connection>
53+
<developerConnection>scm:svn:http://svn.source-code.biz/base64coder-java/trunk/</developerConnection>
54+
</scm>
55+
56+
<developers>
57+
<developer>
58+
<id>chdh</id>
59+
<name>Christian d'Heureuse</name>
60+
<email>chdh@inventec.ch</email>
61+
<timezone>+1</timezone>
62+
<url>http://www.inventec.ch/chdh</url>
63+
<organization>Inventec Informatik AG</organization>
64+
<organizationUrl>http://www.inventec.ch</organizationUrl>
65+
<roles>
66+
<role>architect</role>
67+
<role>developer</role>
68+
<role>mavenizer</role>
69+
</roles>
70+
</developer>
71+
</developers>
72+
73+
<parent>
74+
<groupId>org.sonatype.oss</groupId>
75+
<artifactId>oss-parent</artifactId>
76+
<version>5</version>
77+
</parent>
78+
79+
<dependencies>
80+
<dependency>
81+
<groupId>junit</groupId>
82+
<artifactId>junit</artifactId>
83+
<version>4.7</version>
84+
<scope>test</scope>
85+
</dependency>
86+
</dependencies>
87+
88+
<build>
89+
90+
<plugins>
91+
92+
<plugin>
93+
<artifactId>maven-compiler-plugin</artifactId>
94+
<configuration>
95+
<source>1.5</source>
96+
<target>1.5</target>
97+
</configuration>
98+
</plugin>
99+
100+
<plugin>
101+
<artifactId>maven-source-plugin</artifactId>
102+
<executions>
103+
<execution>
104+
<id>attach-sources</id>
105+
<phase>package</phase>
106+
<goals>
107+
<goal>jar</goal>
108+
</goals>
109+
</execution>
110+
</executions>
111+
</plugin>
112+
113+
<plugin>
114+
<artifactId>maven-javadoc-plugin</artifactId>
115+
<executions>
116+
<execution>
117+
<id>attach-javadocs</id>
118+
<phase>package</phase>
119+
<goals>
120+
<goal>jar</goal>
121+
</goals>
122+
</execution>
123+
</executions>
124+
</plugin>
125+
126+
</plugins>
127+
128+
</build>
129+
66130
</project>

0 commit comments

Comments
 (0)