Author: jochen
Date: Wed Sep 20 00:47:57 2006
New Revision: 448111

URL: http://svn.apache.org/viewvc?view=rev&rev=448111
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/trunk/client/pom.xml
    webservices/xmlrpc/trunk/common/pom.xml
    webservices/xmlrpc/trunk/server/pom.xml
    webservices/xmlrpc/trunk/src/changes/changes.xml
    webservices/xmlrpc/trunk/tests/pom.xml

Modified: webservices/xmlrpc/trunk/client/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/client/pom.xml?view=diff&rev=448111&r1=448110&r2=448111
==============================================================================
--- webservices/xmlrpc/trunk/client/pom.xml (original)
+++ webservices/xmlrpc/trunk/client/pom.xml Wed Sep 20 00:47:57 2006
@@ -1,26 +1,48 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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";>
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.xmlrpc</groupId>
-    <artifactId>xmlrpc</artifactId>
-    <version>3.1-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
-  <artifactId>xmlrpc-client</artifactId>
-  <name>Apache XML-RPC Client Library</name>
-  <build>
-    <sourceDirectory>src/main/java</sourceDirectory>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.xmlrpc</groupId>
-      <artifactId>xmlrpc-common</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-    </dependency>
-  </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>

+<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";>

+  <modelVersion>4.0.0</modelVersion>

+  <parent>

+    <groupId>org.apache.xmlrpc</groupId>

+    <artifactId>xmlrpc</artifactId>

+    <version>3.1-SNAPSHOT</version>

+    <relativePath>../pom.xml</relativePath>

+  </parent>

+  <artifactId>xmlrpc-client</artifactId>

+  <name>Apache XML-RPC Client Library</name>

+  <build>

+    <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>

+      <groupId>org.apache.xmlrpc</groupId>

+      <artifactId>xmlrpc-common</artifactId>

+      <version>${project.version}</version>

+    </dependency>

+    <dependency>

+      <groupId>commons-httpclient</groupId>

+      <artifactId>commons-httpclient</artifactId>

+    </dependency>

+  </dependencies>

+</project>


Modified: webservices/xmlrpc/trunk/common/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/common/pom.xml?view=diff&rev=448111&r1=448110&r2=448111
==============================================================================
--- webservices/xmlrpc/trunk/common/pom.xml (original)
+++ webservices/xmlrpc/trunk/common/pom.xml Wed Sep 20 00:47:57 2006
@@ -1,52 +1,50 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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";>
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.xmlrpc</groupId>
-    <artifactId>xmlrpc</artifactId>
-    <version>3.1-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
-  <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>
-        <configuration>
-          <archive>
-            <manifest>
-              <addExtensions>false</addExtensions>
-            </manifest>
-            <manifestEntries>
-              <Extension-Name>org.apache.xmlrpc</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>
-      <groupId>org.apache.ws.commons</groupId>
-      <artifactId>ws-commons-util</artifactId>
-      <version>1.0.1</version>
-    </dependency>
-    <dependency>
-      <groupId>jaxme</groupId>
-      <artifactId>jaxmeapi</artifactId>
-      <version>0.5.1</version>
-      <scope>provided</scope>
-    </dependency>
-  </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>

+<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";>

+  <modelVersion>4.0.0</modelVersion>

+  <parent>

+    <groupId>org.apache.xmlrpc</groupId>

+    <artifactId>xmlrpc</artifactId>

+    <version>3.1-SNAPSHOT</version>

+    <relativePath>../pom.xml</relativePath>

+  </parent>

+  <artifactId>xmlrpc-common</artifactId>

+  <name>Apache XML-RPC Common Library</name>

+  <build>

+    <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</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>

+      <groupId>org.apache.ws.commons</groupId>

+      <artifactId>ws-commons-util</artifactId>

+      <version>1.0.1</version>

+    </dependency>

+    <dependency>

+      <groupId>jaxme</groupId>

+      <artifactId>jaxmeapi</artifactId>

+      <version>0.5.1</version>

+      <scope>provided</scope>

+    </dependency>

+  </dependencies>

+</project>


Modified: webservices/xmlrpc/trunk/server/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/server/pom.xml?view=diff&rev=448111&r1=448110&r2=448111
==============================================================================
--- webservices/xmlrpc/trunk/server/pom.xml (original)
+++ webservices/xmlrpc/trunk/server/pom.xml Wed Sep 20 00:47:57 2006
@@ -1,30 +1,52 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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";>
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.xmlrpc</groupId>
-    <artifactId>xmlrpc</artifactId>
-    <version>3.1-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
-  <artifactId>xmlrpc-server</artifactId>
-  <name>Apache XML-RPC Server Library</name>
-  <build>
-    <sourceDirectory>src/main/java</sourceDirectory>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>commons-logging</groupId>
-      <artifactId>commons-logging</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.xmlrpc</groupId>
-      <artifactId>xmlrpc-common</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>javax.servlet</groupId>
-      <artifactId>servlet-api</artifactId>
-    </dependency>
-  </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>

+<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";>

+  <modelVersion>4.0.0</modelVersion>

+  <parent>

+    <groupId>org.apache.xmlrpc</groupId>

+    <artifactId>xmlrpc</artifactId>

+    <version>3.1-SNAPSHOT</version>

+    <relativePath>../pom.xml</relativePath>

+  </parent>

+  <artifactId>xmlrpc-server</artifactId>

+  <name>Apache XML-RPC Server Library</name>

+  <build>

+    <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>

+      <groupId>commons-logging</groupId>

+      <artifactId>commons-logging</artifactId>

+    </dependency>

+    <dependency>

+      <groupId>org.apache.xmlrpc</groupId>

+      <artifactId>xmlrpc-common</artifactId>

+      <version>${project.version}</version>

+    </dependency>

+    <dependency>

+      <groupId>javax.servlet</groupId>

+      <artifactId>servlet-api</artifactId>

+    </dependency>

+  </dependencies>

+</project>


Modified: webservices/xmlrpc/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/src/changes/changes.xml?view=diff&rev=448111&r1=448110&r2=448111
==============================================================================
--- webservices/xmlrpc/trunk/src/changes/changes.xml (original)
+++ webservices/xmlrpc/trunk/src/changes/changes.xml Wed Sep 20 00:47:57 2006
@@ -23,6 +23,12 @@
         If the server was throwing an XmlRpcException, then the fault code and 
fault

         string weren't given to the client.

       </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/trunk/tests/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/tests/pom.xml?view=diff&rev=448111&r1=448110&r2=448111
==============================================================================
--- webservices/xmlrpc/trunk/tests/pom.xml (original)
+++ webservices/xmlrpc/trunk/tests/pom.xml Wed Sep 20 00:47:57 2006
@@ -1,48 +1,63 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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";>
-  <modelVersion>4.0.0</modelVersion>
-  <parent>
-    <groupId>org.apache.xmlrpc</groupId>
-    <artifactId>xmlrpc</artifactId>
-    <version>3.1-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
-  <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>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <excludes>
-            <exclude>org/apache/xmlrpc/test/ScalabilityTest.java</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.xmlrpc</groupId>
-      <artifactId>xmlrpc-client</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.xmlrpc</groupId>
-      <artifactId>xmlrpc-server</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-httpclient</groupId>
-      <artifactId>commons-httpclient</artifactId>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>

+<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";>

+  <modelVersion>4.0.0</modelVersion>

+  <parent>

+    <groupId>org.apache.xmlrpc</groupId>

+    <artifactId>xmlrpc</artifactId>

+    <version>3.1-SNAPSHOT</version>

+    <relativePath>../pom.xml</relativePath>

+  </parent>

+  <artifactId>xmlrpc-tests</artifactId>

+  <name>Apache XML-RPC Test Library</name>

+  <build>

+    <plugins>

+      <plugin>

+        <groupId>org.apache.maven.plugins</groupId>

+        <artifactId>maven-surefire-plugin</artifactId>

+        <configuration>

+          <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>

+  </build>

+  <dependencies>

+    <dependency>

+      <groupId>org.apache.xmlrpc</groupId>

+      <artifactId>xmlrpc-client</artifactId>

+      <version>${project.version}</version>

+    </dependency>

+    <dependency>

+      <groupId>org.apache.xmlrpc</groupId>

+      <artifactId>xmlrpc-server</artifactId>

+      <version>${project.version}</version>

+    </dependency>

+    <dependency>

+      <groupId>commons-httpclient</groupId>

+      <artifactId>commons-httpclient</artifactId>

+      <scope>test</scope>

+    </dependency>

+  </dependencies>

+</project>



Reply via email to