@Stephan:
Could you please run a mvn clean compile on the project. After your latest
change I get:
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:11.714s
[INFO] Finished at: Thu Aug 04 07:50:07 CEST 2011
[INFO] Final Memory: 76M/620M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:
2.1:unpack (unpack) on project chemistry-opencmis-server-bindings-war: Error unp
acking file: D:\Jens\workspace-apache\chemistry-opencmis-commons\chemistry-openc
mis-commons-impl\target\classes to: D:\Jens\workspace-apache\chemistry-opencmis-
server\chemistry-opencmis-server-bindings-war\src\main\webapp\WEB-INF
[ERROR] org.codehaus.plexus.archiver.ArchiverException: The source must not be a
directory.
[ERROR] -> [Help 1]
[ERROR]
I had this problem a while ago and fixed it with a change from
<execution>
<id>unpack</id>
<phase>initialize</phase>
<goals>
<goal>unpack</goal>
</goals>
to
<execution>
<id>unpack</id>
<phase>pack</phase>
<goals>
<goal>unpack</goal>
</goals>
But this section does no longer exist.
Jens