I haven't looked at your project but I have a suspicion as to what is going
on.

By default the javadoc.jar is not generated by a default build, so as a
result there is no javadoc.jar in the reactor and hence there is a search
of the local and remote repositories... but since these do not have the
javadoc.jar attached either, you get the complaint.

When you run a release using the release plugin, the standard release
profile adds in executions for source:jar and javadoc:jar which will result
in the artifacts being available in the reactor and hence both deployed to
the remote repository and available for aggregation.

Please try adding the following to your maven command

-P+release

if the build works with that added to the command line, then my theory is
correct


On 8 January 2013 14:05, <org.apache.maven.u...@io7m.com> wrote:

> Hello.
>
> I have a multimodule project at
> http://fossil.io7m.com/repo.cgi/io7m-jcanephora
>
> The root module is responsible for aggregating javadoc from all of the
> submodules. I recently switched to using SNAPSHOT dependencies, rather
> than having to constantly produce new releases for minor changes.
> Unfortunately, now the project refuses to build. I get the following
> error:
>
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-javadoc-plugin:2.8.1:aggregate
> (aggregate) on project io7m-jcanephora: An error has occurred in
> JavaDocs report generation:  Unable to find a version in [2.0.0, 2.1.0,
> 2.1.1, 2.1.2, 2.2.0, 2.3.0] to match the range
> [2.4.0-SNAPSHOT,2.4.0-SNAPSHOT],[2.4.0,3.0.0) [ERROR]
> com.io7m.jaux:io7m-jaux:jar:null
>
> Note that the "[2.0.0, 2.1.0, 2.1.1, 2.1.2, 2.2.0, 2.3.0]" corresponds
> exactly to the available *release* versions of io7m-jaux on the central
> repository. I'm hosting snapshots at http://repo.io7m.com/snapshots and
> the project seems to have no problem using those. It just seems as
> though the javadoc aggregator refuses to use snapshots.
>
> Is this a known problem (perhaps deliberate, for some reason)?
>
> If anyone would like to try building the above project, the following
> settings.xml definitions are necessary:
>
>     <profile>
>       <id>io7m-repos</id>
>       <repositories>
>         <repository>
>           <id>io7m-snapshots</id>
>           <name>io7m snapshots</name>
>           <url>http://repo.io7m.com/snapshots/</url>
>           <snapshots><enabled>true</enabled></snapshots>
>           <releases><enabled>false</enabled></releases>
>           <layout>default</layout>
>         </repository>
>       </repositories>
>     </profile>
>
>     <profile>
>       <id>jogamp</id>
>       <repositories>
>         <repository>
>           <id>jogamp-remote</id>
>           <name>jogamp test mirror</name>
>           <url>http://www.jogamp.org/deployment/maven/</url>
>           <layout>default</layout>
>         </repository>
>       </repositories>
>     </profile>
>
> The source code can either be cloned with the fossil SCM
> (http://fossil-scm.org) or downloaded as a tarball snapshot
> by visiting http://fossil.io7m.com/repo.cgi/io7m-jcanephora/info/tip
> after logging in anonymously (anonymous logins are required to stop
> web spiders from accidentally causing havoc).
>
> I recommend using -Dmaven.test.skip=true, as the test suite requires
> a working OpenGL setup and takes a few minutes to execute.
>
> Any help would be appreciated here, I'm at a loss as to why javadoc
> aggregation has stopped working!
>
> M
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>

Reply via email to