You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2006/09/05 21:59:16 UTC

[Myfaces Wiki] Update of "Building ADF With Maven" by doballve

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by doballve:
http://wiki.apache.org/myfaces/Building_ADF_With_Maven

------------------------------------------------------------------------------
  mvn install
  }}}
  
+ Note: If your install fails with message like:
+ {{{[INFO] org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: Class org.apache.commons.logging.impl.Jdk14Logger does not implement Log
+ }}}
+ 
+ Try this patch:
+ {{{Index: pom.xml
+ ===================================================================
+ --- pom.xml     (revision 440458)
+ +++ pom.xml     (working copy)
+ @@ -224,6 +224,14 @@
+            <artifactId>maven-faces-plugin</artifactId>
+            <version>incubator-m1-SNAPSHOT</version>
+            <inherited>true</inherited>
+ +          <!-- workaround for jdk14logger error message -->
+ +          <dependencies>
+ +            <dependency>
+ +              <groupId>log4j</groupId>
+ +              <artifactId>log4j</artifactId>
+ +              <version>1.2.13</version>
+ +            </dependency>
+ +          </dependencies>
+          </plugin>
+ 
+          <plugin>
+ }}}
+ 
  ==== Building the Trinidad demo with the RI ====
  
  {{{cd trinidad/trinidad/trinidad-demo