You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2006/04/15 17:46:06 UTC

svn commit: r394309 - /incubator/tobago/trunk/contrib/facelets/readme.txt

Author: bommel
Date: Sat Apr 15 08:46:05 2006
New Revision: 394309

URL: http://svn.apache.org/viewcvs?rev=394309&view=rev
Log:
added more facelets support

Added:
    incubator/tobago/trunk/contrib/facelets/readme.txt

Added: incubator/tobago/trunk/contrib/facelets/readme.txt
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/contrib/facelets/readme.txt?rev=394309&view=auto
==============================================================================
--- incubator/tobago/trunk/contrib/facelets/readme.txt (added)
+++ incubator/tobago/trunk/contrib/facelets/readme.txt Sat Apr 15 08:46:05 2006
@@ -0,0 +1,25 @@
+Building
+--------
+
+The facelets and el jars are not available on
+a public maven repository.
+
+You have to download the facelet distribution from:
+
+http://facelets.dev.java.net
+
+and install the missing artifact with
+
+ mvn install:install-file -Dfile=el-api.jar -DgroupId=javax.el \
+ -DartifactId=el-api -Dversion=1.0 -Dpackaging=jar
+
+ mvn install:install-file -Dfile=el-ri.jar -DgroupId=com.sun.el \
+ -DartifactId=el-ri -Dversion=1.0 -Dpackaging=jar
+
+ mvn install:install-file -Dfile=jsf-facelets.jar -DgroupId=com.sun.facelets \
+ -DartifactId=jsf-facelets -Dversion=1.0.14 -Dpackaging=jar
+
+
+This arifact requires the tobago-core-sources.jar artifact.
+The tobago-core-sources.jar is generated with the profile
+attach-source int core (mvn -P attach-source).