Well, you're right. There is a problem. Here:
The version of apacheds-server-main is 1.1.0-SNAPSHOT as it's
inheriting from its parent:
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.directory.server</groupId>
<artifactId>build</artifactId>
<version>1.1.0-SNAPSHOT</version>
</parent>
<artifactId>apacheds-server-main</artifactId>
<name>ApacheDS Server Main</name>
...
It specifies daemon-bootstrappers as a dependency with the following lines:
<dependency>
<groupId>org.apache.directory.daemon</groupId>
<artifactId>daemon-bootstrappers</artifactId>
<version>${pom.version}</version>
</dependency>
So, version 1.1.0-SNAPSHOT of daemon-bootstrappers is expected.
However there is no such artifact. Because it's version is 1.0-RC1 as
written in its pom:
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.directory.daemon</groupId>
<artifactId>build</artifactId>
<version>1.0-RC1</version>
</parent>
<artifactId>daemon-bootstrappers</artifactId>
<name>Apache Directory Daemon Bootstrappers</name>
This should be fixed urgently.
The man's responsible for one week doco and unit test writing, hehe.
On 2/26/06, Emmanuel Lecharny <[EMAIL PROTECTED]> wrote:
> Hi !
>
> I still have a pb when running mvn eclipse:eclipse on the trunks :
>
> ...
> Downloading:
> http://cvs.apache.org/maven-snapshot-repository/org/apache/directory/server/apacheds-server-ssl/1.1.0-SNAPSHOT/apacheds-server-ssl-1.1.0-20060225.180044-2.jar
> 5K downloaded
> [INFO]
> ----------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ----------------------------------------------------------------------------
> [INFO] Failed to resolve artifact.
>
> required artifacts missing:
> org.apache.directory.daemon:daemon-bootstrappers:jar:1.1.0-SNAPSHOT
>
> for the artifact:
> org.apache.directory.server:apacheds-server-main:jar:1.1.0-SNAPSHOT
>
> from the specified remote repositories:
> central (http://repo1.maven.org/maven2),
> mirrormax.mirror (http://apache.mirrormax.net/apache/maven-repository/),
> safehaus (http://m2.safehaus.org),
> apache.snapshots (http://cvs.apache.org/maven-snapshot-repository),
> seekmeup.mirror (http://apache.seekmeup.com/apache/maven-repository/),
> playboy.mirror (http://mirrors.playboy.com/apache/maven-repository/)
> ...
>
> Sorry if I didn't investigated this farther, but my brain is dead tonite
> (big flue). I will try to recover and check it tomorrow.
>
> --Emmanuel
>
--
Ersin