Skip to content

Commit cbe8673

Browse files
authored
Merge pull request #454 from arjantijms/main_javadoc_pom
Added main and javadoc jar, added more info to pom
2 parents 3a47f4a + 6c5dff4 commit cbe8673

File tree

2 files changed

+61
-9
lines changed

2 files changed

+61
-9
lines changed

mq/distribution/pom.xml

+34-9
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,46 @@
3636

3737
<url>https://github.com/eclipse-ee4j/openmq</url>
3838

39+
<organization>
40+
<name>Eclipse Foundation</name>
41+
<url>https://www.eclipse.org/org/foundation/</url>
42+
</organization>
43+
44+
<licenses>
45+
<license>
46+
<name>EPL 2.0</name>
47+
<url>http://www.eclipse.org/legal/epl-2.0</url>
48+
<distribution>repo</distribution>
49+
</license>
50+
<license>
51+
<name>GPL2 w/ CPE</name>
52+
<url>https://www.gnu.org/software/classpath/license.html</url>
53+
<distribution>repo</distribution>
54+
</license>
55+
</licenses>
56+
57+
<issueManagement>
58+
<system>GitHub</system>
59+
<url>https://github.com/eclipse-ee4j/openmq/issues</url>
60+
</issueManagement>
61+
62+
<mailingLists>
63+
<mailingList>
64+
<name>OpenMQ mailing list</name>
65+
<post>[email protected]</post>
66+
<subscribe>https://accounts.eclipse.org/mailing-list/openmq-dev</subscribe>
67+
<unsubscribe>https://accounts.eclipse.org/mailing-list/openmq-dev</unsubscribe>
68+
<archive>https://eclipse.org/lists/openmq-dev</archive>
69+
</mailingList>
70+
</mailingLists>
71+
3972
<scm>
4073
<connection>scm:git:https://github.com/eclipse-ee4j/openmq.git</connection>
41-
<developerConnection>
42-
scm:git:[email protected]:eclipse-ee4j/openmq.git
43-
</developerConnection>
74+
<developerConnection>scm:git:[email protected]:eclipse-ee4j/openmq.git</developerConnection>
4475
<url>https://github.com/eclipse-ee4j/openmq</url>
4576
<tag>HEAD</tag>
4677
</scm>
4778

48-
<organization>
49-
<name>Eclipse Foundation</name>
50-
<url>https://www.eclipse.org/org/foundation/</url>
51-
</organization>
52-
5379
<properties>
5480
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5581
</properties>
@@ -72,7 +98,6 @@
7298
println '### Setting project artifacts for ' + project.version
7399
def projectHelper = container.lookup("org.apache.maven.project.MavenProjectHelper")
74100
75-
project.artifact.setFile(null)
76101
projectHelper.attachArtifact(project, "zip", null, new File("../dist/bundles//mq.zip").canonicalFile)
77102
projectHelper.attachArtifact(project, "zip", "sources", new File("../dist/bundles/mq-src.zip").canonicalFile)
78103
</source>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/*
2+
* Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
3+
*
4+
* This program and the accompanying materials are made available under the
5+
* terms of the Eclipse Public License v. 2.0, which is available at
6+
* http://www.eclipse.org/legal/epl-2.0.
7+
*
8+
* This Source Code may also be made available under the following Secondary
9+
* Licenses when the conditions for such availability set forth in the
10+
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
11+
* version 2 with the GNU Classpath Exception, which is available at
12+
* https://www.gnu.org/software/classpath/license.html.
13+
*
14+
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15+
*/
16+
package distribution;
17+
18+
/**
19+
* The full distribution of OpenMQ is in the zip file.
20+
* This is only a placeholder
21+
*
22+
* @author Arjan Tijms
23+
*
24+
*/
25+
public class Note {
26+
27+
}

0 commit comments

Comments
 (0)