You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2016/05/06 21:47:10 UTC

svn commit: r1742647 [1/3] - in /myfaces/trinidad/trunk/trinidad-impl: pom.xml src/main/resources/META-INF/tr.taglib.xml src/main/resources/META-INF/trh.taglib.xml

Author: lu4242
Date: Fri May  6 21:47:10 2016
New Revision: 1742647

URL: http://svn.apache.org/viewvc?rev=1742647&view=rev
Log:
 TRINIDAD-2540 - Align Trinidad 2.1.x so it can be editable using Netbeans 8 (redirect *.taglib.xml to src/main/resources, so it can be detected)

Added:
    myfaces/trinidad/trunk/trinidad-impl/src/main/resources/META-INF/tr.taglib.xml
    myfaces/trinidad/trunk/trinidad-impl/src/main/resources/META-INF/trh.taglib.xml
Modified:
    myfaces/trinidad/trunk/trinidad-impl/pom.xml

Modified: myfaces/trinidad/trunk/trinidad-impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/pom.xml?rev=1742647&r1=1742646&r2=1742647&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/pom.xml (original)
+++ myfaces/trinidad/trunk/trinidad-impl/pom.xml Fri May  6 21:47:10 2016
@@ -371,7 +371,6 @@
             <goals>
               <goal>generate-faces-config</goal>
               <goal>generate-jsp-taglibs</goal>
-              <goal>generate-facelets-taglibs</goal>
             </goals>
             <configuration>
               <generatedSourceDirectory>${project.build.directory}/generated-sources/maven-faces-plugin</generatedSourceDirectory>
@@ -388,6 +387,15 @@
               <generatedResourcesDirectory>${project.build.directory}/generated-resources/maven-faces-plugin</generatedResourcesDirectory>
             </configuration>
           </execution>
+          <execution>
+            <id>generate-facelets-taglibs</id>
+            <goals>
+              <goal>generate-facelets-taglibs</goal>
+            </goals>
+            <configuration>
+              <generatedResourcesDirectory>src/main/resources</generatedResourcesDirectory>
+            </configuration>
+          </execution>
         </executions>
       </plugin>