James Gustard wrote:

The dashboard Jira can be found at..

http://jira.codehaus.org/browse/  theres a link to dashboard on the left.

Sorry, but the only one that I can find is in the category "Category : Maven 1 Plugins". There is no dashboard entry in "Category : Maven 2 Plugins". Can you post the complete URL to the M2 dashboard JIRA?

I have the historic reports running fine, Ive attached my pom extracts..

Do your "non-historic" dashboard reports work ok?

Yes, without any problem.


<plugin>
               <groupId>org.codehaus.mojo</groupId>
               <artifactId>dashboard-maven-plugin</artifactId>
               <version>1.0-SNAPSHOT</version>
               <dependencies>
                   <dependency>
                       <groupId>com.oracle</groupId>
                       <artifactId>ojdbc14</artifactId>
                       <version>10.2.0.2.0</version>
                   </dependency>
               </dependencies>
               <configuration>
                   <dialect>
                       org.hibernate.dialect.Oracle9Dialect
                   </dialect>
                   <driverClass>
                       oracle.jdbc.driver.OracleDriver
                   </driverClass>
                   <connectionUrl>
                       [my db url]
                   </connectionUrl>
                   <username>[my username]</username>
                   <password>[my password]</password>
               </configuration>
           </plugin>

And in <reporting>..
   <!-- This must be the last report plugin -->
   <plugin>
                           <groupId>org.codehaus.mojo</groupId>
                           <artifactId>
                               dashboard-maven-plugin
                           </artifactId>
                           <version>1.0-SNAPSHOT</version>
   </plugin>


The only difference in my setup is that I use MySQL instead of Oracle. Can you discover any error in this?:

          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>dashboard-maven-plugin</artifactId>
            <version>1.0-SNAPSHOT</version>
            <configuration>
              <dialect>org.hibernate.dialect.MySQLDialect</dialect>
<driverClass>com.mysql.jdbc.Driver</driverClass> <connectionUrl>jdbc:mysql://dbhost:3306/dashboardhistory</connectionUrl>
              <username>user</username>
              <password>password</password>
            </configuration>
            <dependencies>
              <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.0.5</version>
              </dependency>
            </dependencies>
          </plugin>

I'm calling mvn clean scm:update site dashboard-report:persist dashboard-report:dashboard site-deploy from within Cruisecontrol. Might possibly this cause the problem? How do you generate the historic report?

-Gisbert

--
Gisbert Amm
Softwareentwickler Infrastruktur
Telefon: (0721) 91374 - 4224
Telefax: (0721) 91374 - 2740
E-Mail: [EMAIL PROTECTED]
Internet: www.1und1.de

1&1 Internet AG
Elgendorfer Strasse 57
56410 Montabaur

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Norbert Lang, Achim Weiss
Aufsichtsratsvorsitzender: Michael Scheeren

---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to