sinplicity <[EMAIL PROTECTED]> writes:
> Sorry, this might be a re-post, but the first one did not go through
>
> I need to understand how we disable the dependencies report during
> Maven2 site generation while leaving the other reports in place.  We
> use reports such as the dependency convergence report, but the
> dependencies report just takes too long.  The documentation does not
> seem to be clear on how to disable a default report such as this one.

To make the dependency report generation LOTS faster, stick the
following in the reporting/plugins section of your POM:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-project-info-reports-plugin</artifactId>
    <configuration>
      <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
    </configuration>
  </plugin>

Alternatively, run Maven with -Ddependency.locations.enabled=false.

-- 
Espen Wiborg <[EMAIL PROTECTED]> - Veritas vos liberabit
I know you believe you understand what you think I said.  But I am not
sure you realize that what you heard is not what I meant.  -- Anon.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to