After creating a project with archetype softeu-archetype-jsf to make the webapp works with tomcat 6 do the following:
In your pom add in the add the following dependencies and repository:
- <dependency>
- <groupid>javax.el</groupid>
- <artifactid>el-api</artifactid>
- <version>1.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupid>com.sun.el</groupid>
- <artifactid>el-ri</artifactid>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <repository>
- <url>http://download.java.net/maven/2/</url>
- <id>maven2-repository.dev.java.net</id>
- <name>Java.net Repository for Maven 2</name>
- </repository>