-
1. Re: No wildlfy plugin on Netbeans 11
mayerw01 Apr 12, 2019 5:00 AM (in response to vassterg)The Plugin for WildFly Application Server ican be found in the NetBeans 8.2 Plugin Portal. You may add the Url http://updates.netbeans.org/netbeans/updates/8.2/uc/final/distribution/catalog.xml.gz in the Plugins settings
-
2. Re: No wildlfy plugin on Netbeans 11
vassterg Apr 12, 2019 5:34 AM (in response to mayerw01)Unfortunately no. This used to work for Netbeans 10. Not for the new version Netbeans 11.
-
3. Re: No wildlfy plugin on Netbeans 11
mayerw01 Apr 12, 2019 6:12 AM (in response to vassterg)I guess the reason is that the 'NetBeans 8.2 Plugin Portal' is not selected by default. So if you select this Plugin and re install 'Base IDE' it should be OK.
-
4. Re: No wildlfy plugin on Netbeans 11
vassterg Apr 12, 2019 6:34 AM (in response to mayerw01)Excuse me but I don't get it. If I'm gonna reinstall Base IDE from 8.2
Plugin Portal then why upgrade to 11 in the beggining. Tried and
uninstalled Base IDE and Netbeans won't start. I'm forced to install it
fresh again.
-
5. Re: No wildlfy plugin on Netbeans 11
mayerw01 Apr 12, 2019 7:22 AM (in response to vassterg)What I am trying to say is that the 'NetBeans 8.2 Plugin Portal' is apparently not selected in the 'Plugins' panel when installing Apache NetBeans IDE 11.0.
That's why the Base IDE is installed without JBoss/WildFly-Support (eg org-netbeans-modules-javaee-wildfly.jar).
Therefore if you uninstall the 'Base IDE' Plugin, then activate the 'NetBeans 8.2 Plugin Portal' and then install the 'Base IDE' Plugin again it should be OK.
At least this worked in my environment.
Btw. I am only refering to "Plugins"
not to re installing NetBeans
-
6. Re: No wildlfy plugin on Netbeans 11
vassterg Apr 12, 2019 7:36 AM (in response to mayerw01)Thank you for your kind help. I prefer for now to wait for something more
official rather than break my work with possible random ide errors.
-
7. Re: No wildlfy plugin on Netbeans 11
ehugonnet Apr 12, 2019 8:41 AM (in response to vassterg)1 of 1 people found this helpfulThere are licensing issue with the schemas and code from WildFly. This should be resolved soon.
then we will be able to move the code back in Apache NetBeans 12 I hope.
-
8. Re: No wildlfy plugin on Netbeans 11
mnesarco Apr 26, 2019 12:06 PM (in response to vassterg)I am using wildfly-maven-plugin and it works. (But no deploy on save option)
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>2.0.1.Final</version>
<configuration>
<jboss-home>/opt/wildfly</jboss-home>
<server-config>standalone-full.xml</server-config>
<java-home>/opt/java/current</java-home>
<java-opts>-Xms1024m -Xmx1024m -XX:MetaspaceSize=256M -XX:MaxMetaspaceSize=512m -Djava.net.preferIPv4Stack=true</java-opts>
</configuration>
</plugin>
-
9. Re: No wildlfy plugin on Netbeans 11
mayerw01 Apr 27, 2019 6:05 AM (in response to mnesarco)I guess you are referring to NetBeans issues. This should be applied to JIRA https://issues.apache.org/jira/projects/NETBEANS
But from above I understand there are still a couple of issues with NetBeans 11 (especially when including the WildFly Plugin from the NetBeans 8.2 Plugin Porta)
-
10. Re: No wildlfy plugin on Netbeans 11
tomeicher May 15, 2019 4:59 AM (in response to mayerw01)That's it https://issues.apache.org/jira/browse/NETBEANS-2415
Currently there is no progress to be seen.
-
11. Re: No wildlfy plugin on Netbeans 11
tbatey Aug 16, 2019 12:06 PM (in response to vassterg)This is a simple issue to fix. First download the pulging from the Netbeans Plugging Website.
here: http://plugins.netbeans.org/plugin/53333/wildfly-application-server
Then goto the tools->pluggins window; select the Downloaded tab. Then select the Add Pluggins button.
This will give you a simple screen for navigating to the downloaded plugin and adding it to Netbeans.
-
12. Re: No wildlfy plugin on Netbeans 11
ehugonnet Aug 19, 2019 4:54 AM (in response to tbatey)Also the source code is still available under the contrib folder so you can still build it.
-
13. Re: No wildlfy plugin on Netbeans 11
ehugonnet Aug 20, 2019 8:29 AM (in response to ehugonnet)2 of 2 people found this helpfulYou can try an updated built here: Dropbox - org-netbeans-modules-javaee-wildfly.nbm - Simplify your life (I built it against netbeans master but it should work in Netbeans 11.1)
-
14. Re: No wildlfy plugin on Netbeans 11
mohannd.lababidy Aug 29, 2019 9:15 PM (in response to ehugonnet)It works in netbeans 11.1
Thanks.