Skip to content

Commit f3f340e

Browse files
committed
[maven-release-plugin] prepare release xmlrpc-4.0.0
1 parent b8fd6e9 commit f3f340e

File tree

5 files changed

+1079
-1074
lines changed

5 files changed

+1079
-1074
lines changed

client/pom.xml

Lines changed: 99 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,99 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--
3-
4-
Licensed to the Apache Software Foundation (ASF) under one
5-
or more contributor license agreements. See the NOTICE file
6-
distributed with this work for additional information
7-
regarding copyright ownership. The ASF licenses this file
8-
to you under the Apache License, Version 2.0 (the
9-
"License"); you may not use this file except in compliance
10-
with the License. You may obtain a copy of the License at
11-
12-
http://www.apache.org/licenses/LICENSE-2.0
13-
14-
Unless required by applicable law or agreed to in writing,
15-
software distributed under the License is distributed on an
16-
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17-
KIND, either express or implied. See the License for the
18-
specific language governing permissions and limitations
19-
under the License.
20-
21-
-->
22-
<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">
23-
<modelVersion>4.0.0</modelVersion>
24-
<parent>
25-
<groupId>com.evolvedbinary.thirdparty.org.apache.xmlrpc</groupId>
26-
<artifactId>xmlrpc</artifactId>
27-
<version>4.0.0-SNAPSHOT</version>
28-
<relativePath>../pom.xml</relativePath>
29-
</parent>
30-
<artifactId>xmlrpc-client</artifactId>
31-
<name>Apache XML-RPC Client Library</name>
32-
<packaging>bundle</packaging>
33-
<scm>
34-
<connection>scm:git:https://github.com/evolvedbinary/apache-xmlrpc.git</connection>
35-
<developerConnection>scm:git:https://github.com/evolvedbinary/apache-xmlrpc.git</developerConnection>
36-
<url>scm:git:https://github.com/evolvedbinary/apache-xmlrpc.git</url>
37-
</scm>
38-
<properties>
39-
<xmlrpc.osgi.version>version=${project.version}</xmlrpc.osgi.version>
40-
<xmlrpc.osgi.export.pkg>
41-
org.apache.xmlrpc.*
42-
</xmlrpc.osgi.export.pkg>
43-
<xmlrpc.osgi.import.pkg>
44-
!org.apache.xmlrpc.*,
45-
!javax.xml.*,
46-
!org.w3c.dom,
47-
*
48-
</xmlrpc.osgi.import.pkg>
49-
<xmlrpc.osgi.symbolic.name>${project.groupId}.${project.artifactId}</xmlrpc.osgi.symbolic.name>
50-
<xmlrpc.osgi.activator />
51-
<xmlrpc.osgi.export>${xmlrpc.osgi.export.pkg};${xmlrpc.osgi.version}</xmlrpc.osgi.export>
52-
<xmlrpc.osgi.import>${xmlrpc.osgi.import.pkg}</xmlrpc.osgi.import>
53-
<xmlrpc.osgi.dynamic />
54-
<xmlrpc.osgi.private.pkg>!*</xmlrpc.osgi.private.pkg>
55-
<xmlrpc.osgi.failok>false</xmlrpc.osgi.failok>
56-
<xmlrpc.osgi.import.default.version>[$(version;==;$(@)),$(version;+;$(@)))</xmlrpc.osgi.import.default.version>
57-
<xmlrpc.osgi.exclude.dependencies>false</xmlrpc.osgi.exclude.dependencies>
58-
</properties>
59-
<build>
60-
<plugins>
61-
<plugin>
62-
<groupId>org.apache.felix</groupId>
63-
<artifactId>maven-bundle-plugin</artifactId>
64-
<!--<version>${felix-version}</version>-->
65-
<extensions>true</extensions>
66-
<configuration>
67-
<excludeDependencies>${xmlrpc.osgi.exclude.dependencies}</excludeDependencies>
68-
<instructions>
69-
<Extension-Name>org.apache.xmlrpc.client</Extension-Name>
70-
<Specification-Vendor>UserLand Software, Inc.</Specification-Vendor>
71-
<Specification-Version>2003-06-30</Specification-Version>
72-
<Specification-Title>XML-RPC</Specification-Title>
73-
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
74-
<Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
75-
<Implementation-Version>${project.version}</Implementation-Version>
76-
<Bundle-Name>${project.artifactId}</Bundle-Name>
77-
<Bundle-SymbolicName>${xmlrpc.osgi.symbolic.name}</Bundle-SymbolicName>
78-
<Bundle-Activator>${xmlrpc.osgi.activator}</Bundle-Activator>
79-
<Export-Package>${xmlrpc.osgi.export}</Export-Package>
80-
<Import-Package>${xmlrpc.osgi.import}</Import-Package>
81-
<DynamicImport-Package>${xmlrpc.osgi.dynamic}</DynamicImport-Package>
82-
<Private-Package>${xmlrpc.osgi.private.pkg}</Private-Package>
83-
<_versionpolicy>${xmlrpc.osgi.import.default.version}</_versionpolicy>
84-
<_failok>${xmlrpc.osgi.failok}</_failok>
85-
</instructions>
86-
</configuration>
87-
</plugin>
88-
</plugins>
89-
</build>
90-
91-
<dependencies>
92-
<dependency>
93-
<groupId>com.evolvedbinary.thirdparty.org.apache.xmlrpc</groupId>
94-
<artifactId>xmlrpc-common</artifactId>
95-
<version>4.0.0-SNAPSHOT</version>
96-
</dependency>
97-
</dependencies>
98-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Licensed to the Apache Software Foundation (ASF) under one
5+
or more contributor license agreements. See the NOTICE file
6+
distributed with this work for additional information
7+
regarding copyright ownership. The ASF licenses this file
8+
to you under the Apache License, Version 2.0 (the
9+
"License"); you may not use this file except in compliance
10+
with the License. You may obtain a copy of the License at
11+
12+
http://www.apache.org/licenses/LICENSE-2.0
13+
14+
Unless required by applicable law or agreed to in writing,
15+
software distributed under the License is distributed on an
16+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
KIND, either express or implied. See the License for the
18+
specific language governing permissions and limitations
19+
under the License.
20+
21+
-->
22+
<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">
23+
<modelVersion>4.0.0</modelVersion>
24+
<parent>
25+
<groupId>com.evolvedbinary.thirdparty.org.apache.xmlrpc</groupId>
26+
<artifactId>xmlrpc</artifactId>
27+
<version>4.0.0</version>
28+
<relativePath>../pom.xml</relativePath>
29+
</parent>
30+
<artifactId>xmlrpc-client</artifactId>
31+
<name>Apache XML-RPC Client Library</name>
32+
<packaging>bundle</packaging>
33+
<scm>
34+
<connection>scm:git:https://github.com/evolvedbinary/apache-xmlrpc.git</connection>
35+
<developerConnection>scm:git:https://github.com/evolvedbinary/apache-xmlrpc.git</developerConnection>
36+
<url>scm:git:https://github.com/evolvedbinary/apache-xmlrpc.git</url>
37+
<tag>xmlrpc-4.0.0</tag>
38+
</scm>
39+
<properties>
40+
<xmlrpc.osgi.version>version=${project.version}</xmlrpc.osgi.version>
41+
<xmlrpc.osgi.export.pkg>
42+
org.apache.xmlrpc.*
43+
</xmlrpc.osgi.export.pkg>
44+
<xmlrpc.osgi.import.pkg>
45+
!org.apache.xmlrpc.*,
46+
!javax.xml.*,
47+
!org.w3c.dom,
48+
*
49+
</xmlrpc.osgi.import.pkg>
50+
<xmlrpc.osgi.symbolic.name>${project.groupId}.${project.artifactId}</xmlrpc.osgi.symbolic.name>
51+
<xmlrpc.osgi.activator />
52+
<xmlrpc.osgi.export>${xmlrpc.osgi.export.pkg};${xmlrpc.osgi.version}</xmlrpc.osgi.export>
53+
<xmlrpc.osgi.import>${xmlrpc.osgi.import.pkg}</xmlrpc.osgi.import>
54+
<xmlrpc.osgi.dynamic />
55+
<xmlrpc.osgi.private.pkg>!*</xmlrpc.osgi.private.pkg>
56+
<xmlrpc.osgi.failok>false</xmlrpc.osgi.failok>
57+
<xmlrpc.osgi.import.default.version>[$(version;==;$(@)),$(version;+;$(@)))</xmlrpc.osgi.import.default.version>
58+
<xmlrpc.osgi.exclude.dependencies>false</xmlrpc.osgi.exclude.dependencies>
59+
</properties>
60+
<build>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.apache.felix</groupId>
64+
<artifactId>maven-bundle-plugin</artifactId>
65+
<!--<version>${felix-version}</version>-->
66+
<extensions>true</extensions>
67+
<configuration>
68+
<excludeDependencies>${xmlrpc.osgi.exclude.dependencies}</excludeDependencies>
69+
<instructions>
70+
<Extension-Name>org.apache.xmlrpc.client</Extension-Name>
71+
<Specification-Vendor>UserLand Software, Inc.</Specification-Vendor>
72+
<Specification-Version>2003-06-30</Specification-Version>
73+
<Specification-Title>XML-RPC</Specification-Title>
74+
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
75+
<Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
76+
<Implementation-Version>${project.version}</Implementation-Version>
77+
<Bundle-Name>${project.artifactId}</Bundle-Name>
78+
<Bundle-SymbolicName>${xmlrpc.osgi.symbolic.name}</Bundle-SymbolicName>
79+
<Bundle-Activator>${xmlrpc.osgi.activator}</Bundle-Activator>
80+
<Export-Package>${xmlrpc.osgi.export}</Export-Package>
81+
<Import-Package>${xmlrpc.osgi.import}</Import-Package>
82+
<DynamicImport-Package>${xmlrpc.osgi.dynamic}</DynamicImport-Package>
83+
<Private-Package>${xmlrpc.osgi.private.pkg}</Private-Package>
84+
<_versionpolicy>${xmlrpc.osgi.import.default.version}</_versionpolicy>
85+
<_failok>${xmlrpc.osgi.failok}</_failok>
86+
</instructions>
87+
</configuration>
88+
</plugin>
89+
</plugins>
90+
</build>
91+
92+
<dependencies>
93+
<dependency>
94+
<groupId>com.evolvedbinary.thirdparty.org.apache.xmlrpc</groupId>
95+
<artifactId>xmlrpc-common</artifactId>
96+
<version>4.0.0</version>
97+
</dependency>
98+
</dependencies>
99+
</project>

0 commit comments

Comments
 (0)