Hi, I am on a multi-module project with a large number of dependencies. I am trying to run the "site:site" goal in Maven 2.0.8. When it gets to the Dependencies report, it appears to process all of the dependencies, but then it seems to connect to each of our specified repositories several times. This last part takes *forever* (I have killed it after waiting as long as 8 hours). I see the following output (when running Maven in debug mode) when it tries to connect to the repositories:
https://maven-repository.dev.java.net/nonav/repository - Session: Opened https://maven-repository.dev.java.net/nonav/repository - Session: Disconnecting https://maven-repository.dev.java.net/nonav/repository - Session: Disconnected One bit of output I see before it starts connecting to the repositories is: [WARNING] Unable to process class com/ibm/icu/impl/data/LocaleElements_zh__PINYIN.class in JarAnalyzer File C:\Documents and Settings\[username]\.m2\repository\com\ibm\icu\icu4j\2.6.1\icu4j-2.6.1.j ar org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 60 Can someone tell me why it tries to connect to the repositories? I also tried to disable this report by excluding it as follows, but it still tries to generate it. ... <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <reportSets> <reportSet> <reports> <report>cim</report> <report>issue-tracking</report> <report>mailing-list</report> <report>index</report> <report>summary</report> <report>scm</report> <report>project-team</report> </reports> </reportSet> </reportSets> </plugin> ... Other reporting plugins in use are: * findbugs-maven-plugin * cobertura-maven-plugin * maven-checkstyle-plugin * maven-pmd-plugin * maven-surefire-report-plugin Could one of these be causing it to generate the Dependencies report, despite my excluding it? Thanks, Dhruva --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
