You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlrpc-auto@ws.apache.org by jo...@apache.org on 2009/04/18 23:13:37 UTC

svn commit: r766396 - in /webservices/xmlrpc/trunk/dist: ./ .project .settings/ .settings/org.maven.ide.eclipse.prefs pom.xml src/test/

Author: jochen
Date: Sat Apr 18 21:13:36 2009
New Revision: 766396

URL: http://svn.apache.org/viewvc?rev=766396&view=rev
Log:
Preparing use of Nexus by moving the tests to the server project and reassigning the tests purpose to be a dist project.

Added:
    webservices/xmlrpc/trunk/dist/
      - copied from r721554, webservices/xmlrpc/trunk/tests/
    webservices/xmlrpc/trunk/dist/.project
    webservices/xmlrpc/trunk/dist/.settings/
    webservices/xmlrpc/trunk/dist/.settings/org.maven.ide.eclipse.prefs
Removed:
    webservices/xmlrpc/trunk/dist/src/test/
Modified:
    webservices/xmlrpc/trunk/dist/pom.xml

Added: webservices/xmlrpc/trunk/dist/.project
URL: http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/dist/.project?rev=766396&view=auto
==============================================================================
--- webservices/xmlrpc/trunk/dist/.project (added)
+++ webservices/xmlrpc/trunk/dist/.project Sat Apr 18 21:13:36 2009
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>xmlrpc-tests</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Added: webservices/xmlrpc/trunk/dist/.settings/org.maven.ide.eclipse.prefs
URL: http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/dist/.settings/org.maven.ide.eclipse.prefs?rev=766396&view=auto
==============================================================================
--- webservices/xmlrpc/trunk/dist/.settings/org.maven.ide.eclipse.prefs (added)
+++ webservices/xmlrpc/trunk/dist/.settings/org.maven.ide.eclipse.prefs Sat Apr 18 21:13:36 2009
@@ -0,0 +1,9 @@
+#Fri Apr 03 07:55:11 CEST 2009
+activeProfiles=
+eclipse.preferences.version=1
+fullBuildGoals=process-test-resources
+includeModules=false
+resolveWorkspaceProjects=true
+resourceFilterGoals=process-resources resources\:testResources
+skipCompilerPlugin=true
+version=1

Modified: webservices/xmlrpc/trunk/dist/pom.xml
URL: http://svn.apache.org/viewvc/webservices/xmlrpc/trunk/dist/pom.xml?rev=766396&r1=721554&r2=766396&view=diff
==============================================================================
--- webservices/xmlrpc/trunk/dist/pom.xml (original)
+++ webservices/xmlrpc/trunk/dist/pom.xml Sat Apr 18 21:13:36 2009
@@ -21,14 +21,16 @@
 -->
 <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>
+  <description>Assembly project for building the XML-RPC distribution.</description>
   <parent>
     <groupId>org.apache.xmlrpc</groupId>
     <artifactId>xmlrpc</artifactId>
-    <version>3.1.1</version>
+    <version>3.1.2-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
-  <artifactId>xmlrpc-tests</artifactId>
-  <name>Apache XML-RPC Test Library</name>
+  <artifactId>xmlrpc-dist</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache XML-RPC Distribution</name>
   <build>
     <plugins>
       <plugin>
@@ -43,7 +45,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
-        <version>2.1</version>
+        <version>2.2</version>
         <configuration>
           <archive>
             <manifest>
@@ -64,43 +66,9 @@
     </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>
     <dependency>
       <groupId>javax.servlet</groupId>
       <artifactId>servlet-api</artifactId>
     </dependency>
   </dependencies>
-  <profiles>
-    <profile>
-      <id>xmlrpc-release</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-dependency-plugin</artifactId>
-            <executions>
-              <execution>
-                <goals>
-                  <goal>copy-dependencies</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
 </project>