Sorry, but this seems to become a never ending story.
As suggested on this list, I have added two "execution" steps to my POM.
Both have different ID's. (See below.) However, if I do an "mvn
package", or "mvn assembly:assembly" now, then an endless loop begins.
Any idea, what's wrong? I have tried the latest version of the assembly
plugin from SVN. The POM is below. You can also reproduce the problem
quite easily:
# Checkout revision 356376 of Apache XML-RPC
svn co -r 356376
http://svn.apache.org/repos/asf/webservices/xmlrpc/branches/XMLRPC_2_0_BRANCH
xml-rpc-2
# Run the assembly plugin
cd xml-rpc-2
mvn package
# Or "mavn assembly:assembly", doesn't matter
Regards,
Jochen
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.ws.xmlrpc</groupId>
<artifactId>xmlrpc</artifactId>
<name>Apache XML-RPC</name>
<version>2.0.1-SNAPSHOT</version>
<description>
Apache XML-RPC is a Java implementation of XML-RPC, a popular
protocol
that uses XML over HTTP to implement remote procedure calls.
Compared to SOAP, or JAX-RPC, it is stable, much simpler and
easier to
handle.
</description>
<url>http://ws.apache.org/xmlrpc/</url>
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/XMLRPC</url>
</issueManagement>
<ciManagement>
<system>Gump</system>
<url>http://vmgump.apache.org/gump/public/ws-xmlrpc/xmlrpc/index.html</url>
</ciManagement>
<inceptionYear>2001</inceptionYear>
<mailingLists>
<mailingList>
<name>XML-RPC Users</name>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<post>[email protected]</post>
<archive>http://mail-archives.apache.org/mod_mbox/ws-xmlrpc-user/</archive>
<otherArchives>
<otherArchive>http://marc.theaimsgroup.com/?l=xmlrpc-user</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>XML-RPC Developers</name>
<subscribe>[EMAIL PROTECTED]</subscribe>
<unsubscribe>[EMAIL PROTECTED]</unsubscribe>
<post>[email protected]</post>
<archive>http://mail-archives.apache.org/mod_mbox/ws-xmlrpc-dev/</archive>
<otherArchives>
<otherArchive>http://marc.theaimsgroup.com/?l=xmlrpc-dev</otherArchive>
</otherArchives>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>Andrew Evers</name>
<id>aevers</id>
<email>[EMAIL PROTECTED]</email>
</developer>
<developer>
<name>Siegfried Goeschl</name>
<id>sgoeschl</id>
<email>[EMAIL PROTECTED]</email>
</developer>
<developer>
<name>Henri Gomez</name>
<id>hgomez</id>
<email>[EMAIL PROTECTED]</email>
</developer>
<developer>
<name>Ryan Hoegg</name>
<id>rhoegg</id>
<email>[EMAIL PROTECTED]</email>
<organization>ISIS Networks</organization>
</developer>
<developer>
<name>Daniel Rall</name>
<id>dlr</id>
<email>[email protected]</email>
<organization>CollabNet, Inc.</organization>
</developer>
<developer>
<name>Leonard Richarson</name>
<id>leonardr</id>
<email>[EMAIL PROTECTED]</email>
<organization>CollabNet, Inc.</organization>
</developer>
<developer>
<name>Jon Scott Stevens</name>
<id>jon</id>
<email>[EMAIL PROTECTED]</email>
<organization>CollabNet, Inc.</organization>
</developer>
<developer>
<name>Hannes Wallnoefer</name>
<id>hannes</id>
<email>[EMAIL PROTECTED]</email>
</developer>
<developer>
<name>Jochen Wiedmann</name>
<id>jochen</id>
<email>[EMAIL PROTECTED]</email>
</developer>
<developer>
<name>John Wilson</name>
<id>jwilson</id>
<email>[EMAIL PROTECTED]</email>
<organization>The Wilson Partnership</organization>
</developer>
<developer>
<name>Jason van Zyl</name>
<id>jvanzyl</id>
<email>[EMAIL PROTECTED]</email>
<organization>Zenplex</organization>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/webservices/xmlrpc/</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/xmlrpc/</developerConnection>
<tag>XMLRPC_2_0_BRANCH/</tag>
<url>http://svn.apache.org/viewcvs.cgi/webservices/xmlrpc/</url>
</scm>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org/</url>
</organization>
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.2</source>
<target>1.1</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1-SNAPSHOT</version>
<executions>
<execution>
<id>src-assembly</id>
<phase>package</phase>
<configuration>
<descriptor>src/main/assembly/src.xml</descriptor>
</configuration>
<goals>
<goal>assembly</goal>
</goals>
</execution>
<execution>
<id>bin-assembly</id>
<phase>package</phase>
<configuration>
<descriptor>src/main/assembly/bin.xml</descriptor>
<includeSite>true</includeSite>
</configuration>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>apache</id>
<name>Apache Repository</name>
<url>scp://people.apache.org/www/www.apache.org/maven-repository</url>
</repository>
<snapshotRepository>
<id>apache.snapshots</id>
<name>Apache Development Repository</name>
<url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
</snapshotRepository>
<site>
<id>apache.site</id>
<name>Apache Website</name>
<url>scp://people.apache.org/www/ws.apache.org/ws</url>
</site>
</distributionManagement>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]