[richfaces-issues] [JBoss JIRA] (RF-13722) Document CDK Maven Changes for 4.5

Cody Lerum (JIRA) issues at jboss.org
Fri Jul 11 17:38:24 EDT 2014


Cody Lerum created RF-13722:
-------------------------------

             Summary: 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-Tracking


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}



--
This message was sent by Atlassian JIRA
(v6.2.6#6264)


More information about the richfaces-issues mailing list