Author: jochen
Date: Wed Sep 20 00:47:44 2006
New Revision: 448110
URL: http://svn.apache.org/viewvc?view=rev&rev=448110
Log:
The properties "Extension-Name", "Specification-Vendor",
"Specification-Version", "Specification-Title",
"Implementation-Vendor-Id", "Implementation-Vendor"
and "Implementation-Version" are now present in the
MANIFEST files.
PR: XMLRPC-74
Modified:
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/pom.xml
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/common/pom.xml
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/server/pom.xml
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml
webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/tests/pom.xml
Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/pom.xml?view=diff&rev=448110&r1=448109&r2=448110
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/pom.xml (original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/client/pom.xml Wed Sep 20
00:47:44 2006
@@ -10,7 +10,29 @@
<artifactId>xmlrpc-client</artifactId>
<name>Apache XML-RPC Client Library</name>
<build>
- <sourceDirectory>src/main/java</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <addExtensions>false</addExtensions>
+ </manifest>
+ <manifestEntries>
+ <Extension-Name>org.apache.xmlrpc.client</Extension-Name>
+ <Specification-Vendor>UserLand Software,
Inc.</Specification-Vendor>
+ <Specification-Version>2003-06-30</Specification-Version>
+ <Specification-Title>XML-RPC</Specification-Title>
+ <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+ <Implementation-Vendor>Apache Software
Foundation</Implementation-Vendor>
+
<Implementation-Version>${project.version}</Implementation-Version>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
<dependencies>
<dependency>
Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/common/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/common/pom.xml?view=diff&rev=448110&r1=448109&r2=448110
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/common/pom.xml (original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/common/pom.xml Wed Sep 20
00:47:44 2006
@@ -10,12 +10,11 @@
<artifactId>xmlrpc-common</artifactId>
<name>Apache XML-RPC Common Library</name>
<build>
- <sourceDirectory>src/main/java</sourceDirectory>
<plugins>
-<!-- See http://jira.codehaus.org/browse/MJAR-38
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
<configuration>
<archive>
<manifest>
@@ -33,7 +32,6 @@
</archive>
</configuration>
</plugin>
--->
</plugins>
</build>
<dependencies>
Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/server/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/server/pom.xml?view=diff&rev=448110&r1=448109&r2=448110
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/server/pom.xml (original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/server/pom.xml Wed Sep 20
00:47:44 2006
@@ -10,7 +10,29 @@
<artifactId>xmlrpc-server</artifactId>
<name>Apache XML-RPC Server Library</name>
<build>
- <sourceDirectory>src/main/java</sourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <addExtensions>false</addExtensions>
+ </manifest>
+ <manifestEntries>
+ <Extension-Name>org.apache.xmlrpc.server</Extension-Name>
+ <Specification-Vendor>UserLand Software,
Inc.</Specification-Vendor>
+ <Specification-Version>2003-06-30</Specification-Version>
+ <Specification-Title>XML-RPC</Specification-Title>
+ <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+ <Implementation-Vendor>Apache Software
Foundation</Implementation-Vendor>
+
<Implementation-Version>${project.version}</Implementation-Version>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
<dependencies>
<dependency>
Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml?view=diff&rev=448110&r1=448109&r2=448110
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml
(original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/src/changes/changes.xml Wed
Sep 20 00:47:44 2006
@@ -22,6 +22,12 @@
The WebServer replies with an HTTP error 401 now, if the
client uses chunked encoding.
</action>
+ <action dev="jochen" type="fix" issue="XMLRPC-74">
+ The properties "Extension-Name", "Specification-Vendor",
"Specification-Version",
+ "Specification-Title", "Implementation-Vendor-Id",
+ "Implementation-Vendor" and "Implementation-Version" are now
+ present in the MANIFEST files.
+ </action>
</release>
<release version="3.0" date="30-Aug-2006">
<action dev="jochen" type="fix" due-to="Matt Preston"
Modified: webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/tests/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/tests/pom.xml?view=diff&rev=448110&r1=448109&r2=448110
==============================================================================
--- webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/tests/pom.xml (original)
+++ webservices/xmlrpc/branches/XMLRPC_3_0_BRANCH/tests/pom.xml Wed Sep 20
00:47:44 2006
@@ -10,12 +10,6 @@
<artifactId>xmlrpc-tests</artifactId>
<name>Apache XML-RPC Test Library</name>
<build>
- <testSourceDirectory>src/test/java</testSourceDirectory>
- <testResources>
- <testResource>
- <directory>src/test/resources</directory>
- </testResource>
- </testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -24,6 +18,27 @@
<excludes>
<exclude>org/apache/xmlrpc/test/ScalabilityTest.java</exclude>
</excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifest>
+ <addExtensions>false</addExtensions>
+ </manifest>
+ <manifestEntries>
+ <Extension-Name>org.apache.xmlrpc.test</Extension-Name>
+ <Specification-Vendor>UserLand Software,
Inc.</Specification-Vendor>
+ <Specification-Version>2003-06-30</Specification-Version>
+ <Specification-Title>XML-RPC</Specification-Title>
+ <Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
+ <Implementation-Vendor>Apache Software
Foundation</Implementation-Vendor>
+
<Implementation-Version>${project.version}</Implementation-Version>
+ </manifestEntries>
+ </archive>
</configuration>
</plugin>
</plugins>