You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/08/01 15:33:11 UTC

[GitHub] [netbeans] guilherme-oliveria opened a new issue, #4458: Porting my Nb 8.0.2 RCP, apache ANT for Maven

guilherme-oliveria opened a new issue, #4458:
URL: https://github.com/apache/netbeans/issues/4458

   ### Apache NetBeans version
   
   Apache NetBeans latest daily build
   
   ### What happened
   
   Hello, I have a legacy application using netbeans RCP platform in IDE 8.0.2, which is built by ANT, and I am migrating to Maven. I followed these steps: https://netbeans.apache.org/tutorials/80/nbm-maven-commandline.html,
   using NBM version 4.1, <groupId>org.codehaus.mojo</groupId> <groupId>org.apache.netbeans.utilities</groupId> gives an internal error in NB 8.0.2. I used the same dependencies that the RCP platform uses in the 802 version, they can be found here
   http://netbeans.apidesign.org/maven2/org/netbeans/api/org-openide-awt/ . org-openide-* <version> 802.
   
   the Build with mvn clean install is a success, the application also runs on the default project of using mvn nbm:run-platform
   <modules>
       <module>branding</module>
       <module>application</module>
   </modules>
   
   but if I add my modules, the maven build is successful and using the same dependencies as when it was ANT the error in org-openide-*
   
   <modules>
       <module>branding</module>
       <module>application</module>
       <module>myModule</module>
   </modules>
   
   ERROR:
   `[INFO] java.lang.Error
   [INFO] 	at javax.swing.UIDefaults.getUIError(UIDefaults.java:731)
   [INFO] 	at javax.swing.MultiUIDefaults.getUIError(MultiUIDefaults.java:130)
   [INFO] 	at javax.swing.UIDefaults.getUI(UIDefaults.java:761)
   [INFO] 	at javax.swing.UIManager.getUI(UIManager.java:1016)
   [INFO] 	at com.jidesoft.swing.StyledLabel.updateUI(Unknown Source)
   [INFO] 	at javax.swing.JLabel.<init>(JLabel.java:164)
   [INFO] 	at br.com.petrobras.rcp.jide.tabela.TableManager.ajustarDimensionamentoColunas(TableManager.java:503) **
   [INFO] 	at br.com.petrobras.jconsuelo.clientercp.processo.ui.ConsultarCenarioPanel.initTable(ConsultarCenarioPanel.java:220)
   [INFO] 	at br.com.petrobras.jconsuelo.clientercp.processo.ui.ConsultarCenarioPanel.<init>(ConsultarCenarioPanel.java:105)
   [INFO] 	at br.com.petrobras.jconsuelo.clientercp.processo.cookie.ext.ConsultarCenarioCookieImpl.consultarCenario(ConsultarCenarioCookieImpl.java:58)
   [INFO] 	at br.com.petrobras.jconsuelo.clientercp.processo.action.cenario.ConsultarCenarioAction.actionPerformed(ConsultarCenarioAction.java:50)
   [INFO] 	at org.openide.awt.InjectorExactlyOne.actionPerformed(InjectorExactlyOne.java:78)
   [INFO] 	at org.openide.awt.ContextAction$Performer.actionPerformed(ContextAction.java:226)
   [INFO] 	at org.openide.awt.ContextManager.actionPerformed(ContextManager.java:260)
   [INFO] 	at org.openide.awt.ContextAction.actionPerformed(ContextAction.java:109)
   [INFO] 	at org.openide.util.actions.ActionInvoker$1.run(ActionInvoker.java:93)
   [INFO] 	at org.openide.util.actions.ActionInvoker.doPerformAction(ActionInvoker.java:116)
   [INFO] 	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
   [INFO] 	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
   [INFO] 	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
   [INFO] 	at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
   [INFO] UIDefaults.getUI() failed: no ComponentUI class for: com.jidesoft.grid.AutoFilterTableHeader$0[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.0,border=,flags=0,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=null,paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=,defaultCapable=true]
   [
   OR
   [INFO] UIDefaults.getUI() failed: no ComponentUI class for: javax.swing.JMenu[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.0,border=,flags=0,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,disabledSelectedIcon=,margin=null,paintBorder=false,paintFocus=false,pressedIcon=,rolloverEnabled=false,rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=]
   [INFO] java.lang.Error
   OR
   [INFO] UIDefaults.getUI() failed: no ComponentUI class for: javax.swing.JPopupMenu$Separator[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.0,border=,flags=0,maximumSize=,minimumSize=,preferredSize=,orientation=HORIZONTAL]
   [INFO] java.lang.Error
   
   [INFO] UIDefaults.getUI() failed: no ComponentUI class for: com.jidesoft.swing.ClickThroughStyledLabel[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.0,border=,flags=0,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,horizontalAlignment=LEADING,horizontalTextPosition=TRAILING,iconTextGap=4,labelFor=,text=,verticalAlignment=CENTER,verticalTextPosition=CENTER]
   [INFO] java.lang.Error
   `
   
   I'm not migrating in version just changing build from ANT to Maven and using the same libs, but UIDefaults.getUI() fails on the same components.
   here is a similar error but for macOS user
   https://bz.apache.org/netbeans/show_bug.cgi?id=182507
   would need a light, with Build ANT the same java8 version works
   
   ``
   
   ### How to reproduce
   
   _No response_
   
   ### Did this work correctly in an earlier version?
   
   Apache NetBeans 12.3 or earlier
   
   ### Operating System
   
   Windows 64bits
   
   ### JDK
   
   1.8.0_281
   
   ### Apache NetBeans packaging
   
   Apache NetBeans platform
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit a pull request?
   
   Yes
   
   ### Code of Conduct
   
   Yes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] neilcsmith-net commented on issue #4458: Porting my Nb 8.0.2 RCP, apache ANT for Maven

Posted by GitBox <gi...@apache.org>.
neilcsmith-net commented on issue #4458:
URL: https://github.com/apache/netbeans/issues/4458#issuecomment-1206179027

   I don't see an issue at present in NetBeans from this, although there may be - moving to discussions for now.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


[GitHub] [netbeans] neilcsmith-net closed issue #4458: Porting my Nb 8.0.2 RCP, apache ANT for Maven

Posted by GitBox <gi...@apache.org>.
neilcsmith-net closed issue #4458: Porting my Nb 8.0.2 RCP, apache ANT for Maven
URL: https://github.com/apache/netbeans/issues/4458


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists