This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 237438 - org.eclipse.jgit - org.netbeans.InvalidException: Netigso:
Summary: org.eclipse.jgit - org.netbeans.InvalidException: Netigso:
Status: RESOLVED FIXED
Alias: None
Product: platform
Classification: Unclassified
Component: Autoupdate (show other bugs)
Version: 8.0
Hardware: All All
: P3 normal (vote)
Assignee: Jiri Rechtacek
URL:
Keywords:
: 237441 237773 (view as bug list)
Depends on:
Blocks:
 
Reported: 2013-10-21 17:19 UTC by steve.clason
Modified: 2014-04-03 16:53 UTC (History)
2 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Message log (6.07 KB, application/octet-stream)
2013-10-21 17:19 UTC, steve.clason
Details
Netbeans rcp application log file (5.19 KB, text/x-log)
2014-04-02 16:29 UTC, sproger1
Details

Note You need to log in before you can comment on or make changes to this bug.
Description steve.clason 2013-10-21 17:19:24 UTC
Created attachment 141366 [details]
Message log

Installing todays update shows this error:

Warning - could not install some modules: org.eclipse.jgit - org.netbeans.InvalidException: Netigso: C:\Users\steve\AppData\Roaming\NetBeans\dev\modules\org-eclipse-jgit.jar: Cannot start org.eclipse.jgit state remains INSTALLED after start()

That error is followed by this error:

A org.openide.util.RequestProcessor$FastItem exception has occurred.
Please report this at http://www.netbeans.org/community/issues.html,
including a copy of your messages.log file as an attachment.
The messages.log file is located in your C:\Users\steve\AppData\Roaming\NetBeans\dev\var\log folder.

The message log is after NB started with that module disabled.
Comment 1 Ondrej Vrabec 2013-10-22 08:00:27 UTC
*** Bug 237441 has been marked as a duplicate of this bug. ***
Comment 2 Jiri Rechtacek 2013-10-22 09:12:41 UTC
http://hg.netbeans.org/core-main/rev/0473af7550ef
Comment 3 Ondrej Vrabec 2013-10-30 09:17:53 UTC
*** Bug 237773 has been marked as a duplicate of this bug. ***
Comment 4 sproger1 2014-04-02 16:25:21 UTC
The fix appears to have not made it in the 'RELEASE80' version of netbeans. I am a developer of a netbeans rcp application. And when I update the maven dependency from RELEASE74 to RELEASE80, the application builds successfully but fails at startup with the the identical message:

Warning - could not install some modules:
	org.eclipse.jgit - org.netbeans.InvalidException: Netigso: /home/rmendes/Dev_MUVES/mtk8/application/target/mtk/ide/modules/org-eclipse-jgit.jar: Cannot start org.eclipse.jgit state remains INSTALLED after start()


The jars for RELEASE80 is dated 201403101706 (according to the manifest). If this issue has been resolved, then, why did the fix not make it into the release 8.0 version of netbeans which was released several months after this issue was marked as fixed?

My application compiles and runs without issue when using RELEASE74.

The jars are being downloaded directly from the netbeans maven repository  "http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/"

When will a version(jar) be released that has the fix(if it is indeed fixed)?
Comment 5 sproger1 2014-04-02 16:29:36 UTC
Created attachment 146507 [details]
Netbeans rcp application log file

The attached log shows that this issue still exists for netbeans rcp applications that have a dependency on RELEASE80 with release date 201403101706.
Comment 6 sproger1 2014-04-03 16:53:03 UTC
After doing some further digging, I realized that adding a dependency on 'javaeawh-dummy' fixes the issue.

FYI for any netbeans rcp developers out there that use maven, and run into this issue. Add the following to your pom.xml:

        <dependency>
            <groupId>org.netbeans.external</groupId>
            <artifactId>javaewah-dummy</artifactId>
            <version>RELEASE80</version>
        </dependency>