]
Brian Leathem updated RF-13722:
-------------------------------
Fix Version/s: 4.5.0.Beta1
(was: 4.5-Tracking)
Document CDK Maven Changes for 4.5
----------------------------------
Key: RF-13722
URL:
https://issues.jboss.org/browse/RF-13722
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: cdk
Affects Versions: 4.5.0.Alpha3
Reporter: Cody Lerum
Fix For: 4.5.0.Beta1
The maven build requires a 2 step process now with a set to precompile before the cdk
runs
{code}
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>precompile-sources-for-cdk</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-cdk-maven-plugin</artifactId>
<version>${org.richfaces.cdk.version}</version>
<executions>
<execution>
<id>cdk-generate-sources</id>
<phase>process-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
{code}