Hi All,
I recently upgraded to version 1.2.2 and have encountered the following
problem.
I configured continuum as follows:
- Working directory:
/usr/local/continuum-1.2.2/data/working-directory
- Build output directory:
/usr/local/continuum-1.2.2/data/build-output-directory
My builds are configured to do "mvn clean install" and I have the
"checsktyle plugin" configured (actual configuration at the end of this
e-mail).
When "continuum" runs the maven goal, it generates a target folder under the
"working directory" rather than the "build output directory" for the
checkstyle related outputs.
"target"
"target/site"
"taget/site/checkstyle.html"
Then in my "continuum" log I can see the following:
2009-01-12 07:36:34,711 [pool-1-thread-1] INFO buildController - Merging
SCM results
2009-01-12 07:36:34,780 [pool-1-thread-1] INFO buildController - The
project was not built because all changes are unknown (maybe local
modifications or ignored files not defined in your SCM tool.
2009-01-12 07:36:35,008 [pool-1-thread-1] INFO buildController - Changes
found in the current project, building
2009-01-12 07:36:35,009 [pool-1-thread-1] INFO buildController -
Performing action update-project-from-working-directory
This causes all the projects to be rebuilt every hour which is making the
updated continuum version hard to use.
Any help/advice would be greatly appreciated,
Best regards,
Iker
Checkstyle configuration:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>checkstyle/checks.xml</configLocation>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>