Profile for retrotranslating Trinidad to JDK1.4
-----------------------------------------------
Key: TRINIDAD-671
URL: https://issues.apache.org/jira/browse/TRINIDAD-671
Project: MyFaces Trinidad
Issue Type: Improvement
Components: Build
Affects Versions: 1.0.2-core
Reporter: Martin Marinschek
Assignee: Martin Marinschek
Fix For: 1.0.3-core
Added the following profiles section to the masterpom. If you need jdk1.4
compatibility, enable this profile when building with maven doing a
-Dbuild.jdk14.compatible=true.
regards,
Martin
<profiles>
<profile>
<id>jdk14-compatible</id>
<activation>
<property>
<name>build.jdk14.compatible</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<!-- Backport Trinidad -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>retrotranslator-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>translate-project</goal>
</goals>
<configuration>
<advanced>true</advanced>
<embed>org.apache.myfaces.trinidad.backport</embed>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.