Unfortunately Maven's internal support for report aggregation is rather poor and does have a number of limitations.
This may be addressed by an application like Sonar to monitor quality statistics from various projects.
| [top] |
This happens on Unix/Linux machine without installed X11 window server. See Unix Environment documentation.
| [top] |
Due to Changes that may affect existing builds in Maven 2.0.9 (MNG-1412 / MNG-3111 introduced deterministic ordering of dependencies on the classpath.), you can have a "java.lang.ExceptionInInitializerError".
This error can be raised if you used "commons-logging" in the last version which is incompatible with the version used by Hibernate in dashboard plugin.
To resolve it, you must use the ability for Maven 2.0.9 to override a dependency used by a plugin.
For example, with "commons-logging" version conflict, use this configuration :
<!-- Dashboard -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dashboard-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<configuration>
<dialect>${org.hibernate.dialect}</dialect>
<driverClass>
${org.hibernate.connection.driverclass}
</driverClass>
<connectionUrl>
${org.hibernate.connection.connectionurl}
</connectionUrl>
<username>${org.hibernate.connection.username}</username>
<password>${org.hibernate.connection.password}</password>
<keepVersionAsDiscriminantCriteria>
false
</keepVersionAsDiscriminantCriteria>
</configuration>
<dependencies>
<dependency>
<!-- HSQLDB Jdbc Driver -->
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.9</version>
</dependency>
<!-- to override commons-logging in Hibernate library dependency -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</plugin>
| [top] |
This is a setting of the browser, not a CSS issue.
In MSIE, it is part of the Advanced Options of the Internet Settings:

In Firefox, it is an option in the File - Page Setup dialogue:

| [top] |