This content has been marked as final.
Show 2 replies
-
1. Re: How to generate eap7 project ? Is there options to set bom import to jboss-eap-javaee7 for the new project ?
gastaldi Sep 26, 2016 10:31 AM (in response to nmay)Hi,
If you don't mind using javax:javaee-api:7.0, you can provide the --stack option during project- creation
project-new --named demo --stack JAVA_EE_7
or run the following command after the project is created:
javaee-setup --java-ee-version 7
If you want to use that specific BOM, you can use:
project-new --named demo project-add-managed-dependencies org.jboss.bom:jboss-eap-javaee7:7.0.0.GA:import
-
2. Re: How to generate eap7 project ? Is there options to set bom import to jboss-eap-javaee7 for the new project ?
nmay Sep 27, 2016 4:30 PM (in response to gastaldi)thanks a lot ! that is really cool