You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org> on 2007/09/01 09:15:19 UTC

[jira] Created: (TRINIDAD-671) Profile for retrotranslating Trinidad to JDK1.4

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.


[jira] Resolved: (TRINIDAD-671) Profile for retrotranslating Trinidad to JDK1.4

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TRINIDAD-671?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Marinschek resolved TRINIDAD-671.
----------------------------------------

    Resolution: Fixed

> 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.


[jira] Commented: (TRINIDAD-671) Profile for retrotranslating Trinidad to JDK1.4

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TRINIDAD-671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524265 ] 

Martin Marinschek commented on TRINIDAD-671:
--------------------------------------------

Thanks to Bernhard Huemer for figuring this out!

regards,

Martin

> 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.


[jira] Commented: (TRINIDAD-671) Profile for retrotranslating Trinidad to JDK1.4

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TRINIDAD-671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524264 ] 

Martin Marinschek commented on TRINIDAD-671:
--------------------------------------------

For more info, see: http://wiki.apache.org/myfaces/Trinidad_and_JDK_1%2e4

> 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.