Reputation: 36634
The project uses JavaServer Faces and JPA. NetBeans 7.3.1 IDE does not allow to change the Java EE version.
I already found this question:
How do I upgrade an existing enterprise project from Java EE5 to Java EE 6 in Netbeans (6.9)
tries to apply the changes as described. I have updated project.properties.
endorsed.classpath=\
${libs.javaee-endorsed-api-7.0.classpath}
...
j2ee.platform=1.7-web
...
javac.source=1.7
javac.target=1.7
Upvotes: 4
Views: 15996
Reputation: 129
Also change j2ee.server.home in nbproject\private\private.properties to directory path of J2EE matching Server
Upvotes: 1
Reputation: 7543
In Netbeans 8.1 I guess this changed. I needed to update the information in the nb-configuration.xml
For Java EE 7 it is:
<project-shared-configuration>
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
<org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_j2eeVersion>1.7</org-netbeans-modules-maven-j2ee.netbeans_2e_hint_2e_j2eeVersion>
</properties>
</project-shared-configuration>
Upvotes: 1
Reputation: 2047
I just had to do the same thing, I had an Java EE 6 Application and wanted to go to Java EE 7.
I just made a new project in Netbeans, then I selected Java Web in Categories and then Web Application with existing sources. Then Netbeans will present you a wizard, where you choose your EE6 project. After that you also can set an other Java EE Version.
Upvotes: 4
Reputation: 1367
NetBeans won't automatically update the project files when you update the version in project.properties
. You'll have to do it by hand.
It's also worth noting that the Java EE version in NetBeans projects doesn't actually affect anything, in my experience. You can have the Java EE version set to 6 in your project, but if it uses EE 7 features and is deployed to a Java EE 7 server, it will run correctly.
Upvotes: 4