Hi!

I tried it quicly and came across a few issues (most of which are
easily dealt with).

Did you try to setup QALab in a continous integration environment? I set up my project to run checkstyle:check as well as qalab-merge after the verify phase using code similiar to the following in the build-section of the pom:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-checkstyle-plugin</artifactId>
  <executions>
    <execution>
      <id>checkstyle</id>
      <phase>verify</phase>
      <goals>
        <goal>check</goal>
      </goals>
    </execution>
  </executions>
  [...]
</plugin>

The problem I ran across is that the qalab-plugin gets executed before the checkstyle-plugin and thus finds no checkstyle-result.xml to merge. Did anyone of you ran across this problem as well?


--
Mit freundlichen Grüßen / Kind regards

Hendrik Busch - Stellv. Leiter der Softwareentwicklung

LexisNexis Deutschland GmbH
http://www.lexisnexis.de
Feldstiege 100
D-48161 Münster
phone +49 (0) 2533-9300-455
fax +49 (0) 02533-9300-50
[EMAIL PROTECTED]

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

Reply via email to