NetBeans Forums
| View previous topic :: View next topic |
| Author |
Message |
karolbe
Joined: 22 Oct 2009 Posts: 2
|
Posted: Thu Jul 15, 2010 6:33 pm Post subject: JSF Maven and autocompletion in NB 6.9 editor |
|
|
Hello
Is there something special I have to do to enable autocompletion in editor for web projects built using Maven?
I have added dependencies on JSF:
| Code: | <dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
|
but in JSP file autocompletion and suggestions aren't working. JSP file contains taglibs for JSF:
| Code: | <%@ page pageEncoding="UTF-8" contentType="text/html" %>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
|
Any ideas?
Thanks
Karol |
|
| Back to top |
|
 |
jyeary
Joined: 21 Oct 2008 Posts: 612 Location: Simpsonville, SC
|
Posted: Mon Jul 19, 2010 2:17 pm Post subject: Re: JSF Maven and autocompletion in NB 6.9 editor |
|
|
Hello Karol,
I had to add a dependency to the pom as noted below for this to work.
|
|
| Back to top |
|
 |
karolbe
Joined: 22 Oct 2009 Posts: 2
|
Posted: Tue Jul 20, 2010 9:47 am Post subject: Re: JSF Maven and autocompletion in NB 6.9 editor |
|
|
| jyeary wrote: | Hello Karol,
I had to add a dependency to the pom as noted below for this to work.
|
Hi
What dependency? I don't see it
Karol |
|
| Back to top |
|
 |
jyeary
Joined: 21 Oct 2008 Posts: 612 Location: Simpsonville, SC
|
Posted: Sat Jul 24, 2010 2:52 am Post subject: Java EE 5 pom.xml dependencies |
|
|
Here are the dependencies for a Java EE 5 application using JSF 1.2 RI.
| Code: |
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>1.2-b19</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>1.2-b19</version>
<scope>provided</scope>
</dependency>
|
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|