Code Monkey home page Code Monkey logo

gephi-plugins's Introduction

Gephi Plugins

This repository is an out-of-the-box development environment for Gephi plugins. Gephi plugins are implemented in Java and can extend Gephi in many different ways, adding or improving features. Getting started is easy with this repository but also checkout the Bootcamp for examples of plugins you can create.

Get started

Requirements

Developing Gephi plugins requires JDK 11 or later and Maven.

Create a plugin

The creation of a new plugin is simple thanks to our custom Gephi Maven Plugin. The generate goal asks a few questions and then configures everything for you.

  • Fork and checkout the latest version of this repository:

      git clone [email protected]:username/gephi-plugins.git
    
  • Run the following command and answer the questions:

      mvn org.gephi:gephi-maven-plugin:generate
    

This is an example of what this process will ask:

    Name of organization (e.g. my.company): org.foo
    Name of artifact (e.g my-plugin): my-plugin
    Version (e.g. 1.0.0): 1.0.0
    Directory name (e.g MyPlugin): MyPlugin
    Branding name (e.g My Plugin): My Plugin
    Category (e.g Layout, Filter, etc.): Layout
    Author: My Name
    Author email (optional):
    Author URL (optional):
    License (e.g Apache 2.0): Apache 2.0
    Short description (i.e. one sentence): Plugin catch-phrase
    Long description (i.e multiple sentences): Plugin features are great
    Would you like to add a README.md file (yes|no): yes

The plugin configuration is created. Now you can (in any order):

  • Add some Java code in the src/main/java folder of your plugin
  • Add some resources (e.g. Bundle.properties, images) into the src/main/resources/ folder of your plugin
  • Change the version, author or license information into the pom.xml file, which is in your plugin folder
  • Edit the description or category details into the src/main/nbm/manifest.mf file in your plugin folder

Build a plugin

Run the following command to compile and build your plugin:

   mvn clean package

In addition to compiling and building the JAR and NBM, this command uses the Gephi Maven Plugin to verify the plugin's configuration. In case something is wrong it will fail and indicate the reason.

Run Gephi with plugin

Run the following command to run Gephi with your plugin pre-installed. Make sure to run mvn package beforehand to rebuild.

   mvn org.gephi:gephi-maven-plugin:run

In Gephi, when you navigate to Tools > Plugins you should see your plugin listed in Installed.

Submit a plugin

Submitting a Gephi plugin for approval is a simple process based on GitHub's pull request mechanism.

  • First, make sure you're working on a fork of gephi-plugins. You can check that by running git remote -v and look at the url, it should contain your GitHub username, for example [email protected]:username/gephi-plugins.git.

  • Add and commit your work. It's recommended to keep your fork synced with the upstream repository, as explained here, so you can run git merge upstream/master beforehand.

  • Push your commits to your fork with git push origin master.

  • Navigate to your fork's URL and create a pull request. Select master-forge instead of master as base branch.

  • Submit your pull request. If possible, before you submit make sure to enable edits from maintainers so that we can help you tweak the code and configuration when needed.

Update a plugin

Updating a Gephi plugin has the same process as submitting it for the first time. Don't forget to merge from upstream's master branch.

Also, make sure to increment the version number of your plugin in your module's pom.xml file before submitting.

IDE Support

Netbeans IDE

  • Start Netbeans and go to File and then Open Project. Navigate to your fork repository, Netbeans automatically recognizes it as Maven project.
  • Each plugin module can be found in the Modules folder.

To run Gephi with your plugin pre-installed, right click on the gephi-plugins project and select Run.

To debug Gephi with your plugin, right click on the gephi-plugins project and select Debug.

IntelliJ IDEA

  • Start IntelliJ and Open the project by navigating to your fork repository. IntelliJ may prompt you to import the Maven project, select yes.

To run Gephi with your plugin pre-installed when you click Run, create a Maven run configuration and enter org.gephi:gephi-maven-plugin:run in the command field. The working directory is simply the current project directory.

To debug Gephi with your plugin, create a Remote configuration and switch the Debugger mode option to Listen. Then create a Maven run configuration like abobe but add -Drun.params.debug="-J-Xdebug -J-Xnoagent -J-Xrunjdwp:transport=dt_socket,suspend=n,server=n,address=5005" into the Runner > VM Options field. Then, go to the Run menu and first run debug with the remote configuration and then only run debug with the Maven configuration.

When you make changes to your plugin and want to run Gephi with the changes, make sure to build the gephi-plugins root module, and not only your module. Otherwise, your changes won't be reflected.

FAQ

What kind of plugins can I create?

Gephi can be extended in many ways but the major categories are Layout, Export, Import, Data Laboratory, Filter, Generator, Metric, Preview, Tool and Appearance. A good way to start is to look at examples with the bootcamp.

In which language can plugins be created?

Plugins can use any JVM languages (e.g. Scala, Python, Groovy) but the default option is Java.

Can native libraries be used?

Yes, native libraries can be used in modules.

How is this repository structured?

The modules folder is where plugin modules go. Each plugin is defined in a single folder in this directory. A plugin can be composed of multiple modules (it's called a suite then) but usually one is enough to do what you want.

A Maven pom can inherit configurations from a parent and that is something we use to keep each plugin's pom very simple. Notice that each plugin's pom (i.e. the pom.xml file in the plugin folder) has a <parent> defined.

The pom.xml file at the root folder makes everything fit together and notably lists the modules. No need to change anything there besides the <modules>...</modules> list.

How are the manifest settings defined?

There are two options. The first option is what the generate task does: it puts entries OpenIDE-Module-Short-Description, OpenIDE-Module-Long-Description, OpenIDE-Module-Display-Category and OpenIDE-Module-Name into the src/main/nbm/manifest.mf file. The second option sets a OpenIDE-Module-Localizing-Bundle entry into the manifest.mf so values are defined elsewhere in Bundle.properties file. The value is then simply the path to the file (e.g. OpenIDE-Module-Localizing-Bundle: org/project/Bundle.properties).

The second option is preferable when the short or long description have too many characters as the manifest format is pretty restrictive.

How to add a new module?

This applies for suite plugins with multiple modules. Besides creating the module folder, edit the pom.xml file and add the folder path to <modules>, like in this example:

    <!-- List of modules -->
    <modules>
        <!-- Add here the paths of all modules (e.g. <module>modules/MyModule</module>) -->
        <module>modules/ExampleModule</module> 
    </modules>

Where are dependencies configured?

Dependencies are configured in the <dependencies> section in the plugin folder's pom.xml. Each dependency has a groupId, an artifactId and a version. There are three types of dependencies a plugin can have: an external library, a Gephi module or a Netbeans module.

The list of Gephi and Netbeans dependencies one can use can be found in the parent POM, which you can browse here. All possible dependencies are listed in the <dependencyManagement> section. Because each plugin module already inherits the version from this parent pom, it can be omitted. For instance, this is how a plugin depends on GraphAPI and Netbeans's Lookup.

<dependencies>
     <dependency>
         <groupId>org.netbeans.api</groupId>
         <artifactId>org-openide-util-lookup</artifactId>
     </dependency>
     <dependency>
         <groupId>org.gephi</groupId>
         <artifactId>graph-api</artifactId>
    </dependency>
</dependencies>

How to best write unit tests for my plugin?

It's recommended to use unit-testing to ensure a reliable plugin.

A JUnit4 dependency can be added to your module's pom.xml

<dependency>
    <groupId>org.netbeans.api</groupId>
    <artifactId>org-netbeans-modules-nbjunit</artifactId>
    <scope>test</scope>
</dependency>

Those tests will automatically be run when your plugin is built.

What are public packages for?

This applies for suite plugins with multiple modules. A module should declare the packages it wants to make accessible to other modules. For instance, if a module B depends on the class my.org.project.ExampleController defined in a module A, the A module should declare my.org.project as public package.

Public packages are configured in the module's pom.xml file. Edit the <publicPackages> entry. Example:

<publicPackages>
    <publicPackage>my.org.project</publicPackage>
</publicPackages>

What is the difference between plugin and module?

It's the same thing. We say module because Gephi is a modular application and is composed of many independent modules. Plugins also are modules but we call them plugin because they aren't in the core Gephi.

When running the plugin in Netbeans I get an error "Running standalone modules or suites requires..."

This error appears when you try to run a module. To run Gephi with your plugin you need to run the gephi-plugins project, not your module.

Best practices

Code quality

  • Write your code in English, so it can be best reviewed and maintained.

gephi-plugins's People

Contributors

eduramiba avatar kant avatar mbastian avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

gephi-plugins's Issues

[neo4j-plugin] Empty warning on full import

A failure to open a neo4j database, e.g. because it is locked, displays an empty warning dialog. The dialog should inform the user about the problems, additional infos, e.g. stacktraces, should be logged.

Fails with Java 6

I'm running on Mavericks OSx and have to downgrade to Java 6 in order to make gephi functional in my machine. The problem is that the neo4j plugin doesn't support Java 6, only Java 7. What can I do to fix this? Is there a way to make the plugin run on a previous Java version?

jythonconsole fails to load after install

After installing the plugin on Gephi 0.8.1, the console fails to load with the following error alert:

Traceback (most recent call last):
File "", line 1, in
ImportError: No module jythonconsole

Apparently jythonconsole is not in the correct path when the plugin is installed on Gephi.

< and > operators don't work as expected

The "less than" and "greater than" operators do not work properly at the moment.

The real problem here is that the Filters API does not support open intervals on the Range objects.

A quick hack for having these operators to work with Integer attributes would be to just increment/decrement the value (i.e. turn the filter attribute > 10 into attribute >= 11). Even though this would work for integers, this hack wouldn't actually fix the issue for floats and other data types.

I'm not sure defining > and < for floats would make any sense either, since no sane person should use the == operator for floats (hence, the output for >= and > is the same in most cases). In this case, the "Integer hack" I mentioned above would suffice.

Thoughts?

iterating through g.nodes returns None eventually

(console script plugin)

I'm iterating over g.nodes and changing the color of a node according to its position

f = #scaling factor from X,Y range to RGB range
for v in g.nodes: color_node(v)

def color_node(v):
x, y = v.position
r = int(x_f)
b = int(y_f)
v.color = Color(r, 0 ,b)

it works for a few nodes until it throws an exception as NoneType has not position attribute. I don't see why it should eventually reach a None object. Data Table shows no empty rows, same iteration with only print(v) also doesn't fail. could be some concurrency related stuff.

Support Neo4J 2.0

It would be great if the plugin could be upgraded to support Neo4J 2.0.

Related stackoverflow question.

The current error suggests setting allow_store_upgrade=true but this did not fix my problem and I still get the same error.

Missing functions

I'm needing to create a binary string so attempted to use bin(x) however I'm getting the error that bin is not defined. I've run into this with a few other functions which should exist and didn't.

I cannot import "Spreadsheet".

I open the Gephi 0.8.1 (in Ubuntu OS 14.04 , 32 - bit ), create a new project and then go to the tab "Data Laboratory", in "Data Table" there I press the "Import Spreadsheet" but does nothing :(

Below I get the following error:

java.lang.ClassNotFoundException: org.netbeans.validation.api.ui.ValidationPanel
    at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
Caused: java.lang.ClassNotFoundException: org.netbeans.validation.api.ui.ValidationPanel starting from ModuleCL@59eead[org.gephi.datalab.plugin] with possible defining loaders [ModuleCL@1731def[org.gephi.lib.validation]] and declared parents [ModuleCL@156f8b9[org.gephi.datalab.api], ModuleCL@17e1a9e[org.gephi.data.attributes.api], ModuleCL@b7501b[org.openide.dialogs], ModuleCL@58825[org.gephi.lib.javacsv], ModuleCL@b24e3f[org.gephi.ui.utils], ModuleCL@1540d0c[org.openide.windows], ModuleCL@7ff40e[org.jdesktop.swingx], ModuleCL@1731def[org.gephi.lib.validation], ModuleCL@784abe[org.gephi.tools.api], org.netbeans.MainImpl$BootClassLoader@e77ca4, ...5 more]
    at org.netbeans.ProxyClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
Caused: java.lang.NoClassDefFoundError: org/netbeans/validation/api/ui/ValidationPanel
    at org.gephi.datalab.plugin.manipulators.general.ui.ImportCSVUIWizardAction.getPanels(Unknown Source)
    at org.gephi.datalab.plugin.manipulators.general.ui.ImportCSVUIWizardAction.performAction(Unknown Source)
    at org.gephi.datalab.plugin.manipulators.general.ImportCSV.execute(Unknown Source)
[catch] at org.gephi.datalab.api.DataLaboratoryHelper$5.run(Unknown Source)

What can I do to fix it ??

Thanks in advance. :)

scripting-plugin migration help

Hi Everyone,
since I was working with the scripting plugin for Gephi 0.8 for a long time, and didn't want to wait for someone else to do the update to 0.9, I did most of the code and dependency changes that were necessary- including migration to maven. Unfortunately, I need help with the dependency management! For simplicity, I did not implement Filters yet. The build runs fine, but when I install it in Gephi and want to open the Console, it crashes with java.lang.IllegalStateException: Cannot find TopComponent with preferredID ConsoleTopComponent, see IDE log for more details.
I attached the projects as .zip.
scripting_api_working.zip
desktop-scripting.zip
gython_wrapper.zip
scripting_plugin.zip

You can find the ConsoleTopComponent.java file in the desktop-scripting scr. I would appreciate any help or feedback!

Not-latin encoding in Graph Streaming

Graph Streaming doesn't support not-latin encoding (supports only first 256 symbols of Unicode). But we need to create node with russian (for example) labels via Graph Streaming. One solution is understand Content-Encoding header of HTTP-request to Graph Streaming. Other - understand all as UTF-8.

Is there any requirement for the version of Python?

Hi,

I am going to give a workshop on Gephi and would like to introduce this plugin.
The participants will bring their laptop. Is there any recommendations I should make for the plugin to install correctly? Should they have Python already installed on their computers? If so, which version? Are there any known issues with some OS, etc.?

Thx!!

Clement

null pointer exception

I implemented a new metric for nodes. in my loop on the graph nodes, I use
n.setAttribute(NEWMETRIC, newMetric) to add the computed value in the nodes table.
I already usednodeTable.addColumn(NEWMETRIC, NbBundle.getMessage(NewMetric.class, "NewMetric.nodecolumn.NewMetric"), Double.class, 0.0); to add the column to the nodes table.
the null pointer is located in the setAtrribute instruction.
Did I miss somthing ?

Exception:
java.lang.NullPointerException at org.gephi.graph.impl.ElementImpl.checkColumn(ElementImpl.java:705) at org.gephi.graph.impl.ElementImpl.setAttribute(ElementImpl.java:318) at org.gephi.graph.impl.ElementImpl.setAttribute(ElementImpl.java:313)
PS: my new_metric's class iimplements only statisctics interface

Doesn't see Java 1.7 on Mavericks

When I saw the error message "Neo4j plugin requires Java 1.7", I installed Java 1.7 JRE on my Mavericks machine. When I ask for java -version I get

java version "1.7.0_51"
Java(TM) SE Runtime Environment (build 1.7.0_51-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)

But the plugin still doesn't want to get installed in Gephi, it simply doesn't see the new Java version. What can I do?

Embed a Script Editor on the Plugin

It would be great to have an embedded script editor on the plugin. Something like MATLAB's script editor or something, with support for saving/loading scripts.

Streamer, nodes for groups, "cn" on non-existing group

I noticed that grouping nodes in Gephi generates some streamer events:

{"cn":{"78":{}}}
{"cn":{"78":{"Label":"Group (77 nodes)"}}}
{"an":{"78":{"g":0.67603743,"b":0.652508,"r":0.5715301,"Label":"Group (77 nodes)","z":0,"y":-6.341315E-6,"x":-7.133979E-6,"size":149.01709}}}

It is somewhat unexpected that grouping would change the graph itself, but I can accept that grouping means contracting nodes into a single node.

But is it OK, that a "change node" event is sent on non-existing node "78" first? I guess that the node should be added first, and then changed.

Origin null not allowed by Access-Control-Allow-Origin (graph-streaming)

I am trying to build a page that pulls the graph through the graph-streaming plugin, populates it into a page, and then allows editing of it.

Using jquery,

$.getJSON('http://localhost:8080/workspace0','operation=getGraph', function(data) {

gives me the error, "Origin null not allowed by Access-Control-Allow-Origin (in Chrome). The solution is supposed to be to append "callback=?" to the request:

$.getJSON('http://localhost:8080/workspace0','operation=getGraph&callback=?', function(data) {

However, when doing that, the GET doesn't complete.

Any suggestions for pulling a graph into a webpage and then dynamically working with it?

showing node labels

Hello,

I am writing a Layout Plugin (for version 0.9.1) and I would like to set the node labels visible.
I thought that this code would work, but I get the error below.

in pom.xml

<dependency>
            <groupId>org.gephi</groupId>
            <artifactId>visualization</artifactId>   
</dependency>"

in code itself

import org.gephi.visualization.VizController;
import org.gephi.visualization.VizModel;

VizModel vizModel = VizController.getInstance().getVizModel();
vizModel.getTextModel().setShowNodeLabels(true);

[ERROR] Project depends on packages not accessible at runtime in module org.gephi:visualization:jar:0.9.1

What am I missing?

Thanks!

How imoprt file in gephi 9.1?

I would like to write a plugin which just imported graphml the specified path, but on the 48 line - importController.process (container, proc, workspace);
I get an error NullPointerException
code ->

public class firstImporter {
ProjectController pc;
Workspace workspace;
ImportController importController;
Container container;
ContainerLoader lController;
Processor proc;
Importer jhon;
GraphModel graphModel;
DirectedGraph graph;
Project startproj;
String pathPskov;

public firstImporter(String path) {
path = "C:\Users\Friggx\NEW\Graph\smol.graphml";
pc = Lookup.getDefault().lookup(ProjectController.class);
workspace = pc.getCurrentWorkspace();
importController = Lookup.getDefault().lookup(ImportController.class);
try {
File file = new File(path);
container = importController.importFile(file);
System.out.println(container.toString());
container.getLoader().setEdgeDefault(EdgeDirectionDefault.UNDIRECTED);
} catch (Exception ex) {
ex.printStackTrace();
return;
}
importController.process(container, proc, workspace);
graphModel = Lookup.getDefault().lookup(GraphController.class).getGraphModel();
graph = graphModel.getDirectedGraph();
}

Unknown error when importing Neo4J 2.1.3 database

Trying to open a Neo4j 2.1.3 database using 'File'->'Neo4j Database'
==> Neither 'Full Import' nor 'Traversal Import' work

After selecting database and clicking open:
==> 'Full Import' results only in an empty 'warning' screen
==> 'Traversal Import' does nothing

Maybe i am missing something somewhere, so any assistance is highly appreciated.

Filters in Gephi

I am unable to use the k-core filter in Gephi.The documentation regarding use of several filters is missing.

[neo4j-plugin] 2.0 and ClassCastException

I tried updating the neo4j-plugin for use with 2.0.0-M06 but get ClassCastExceptions while setting attributes during import (it is a String attribute in neo4j):

java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long
    at org.gephi.neo4j.plugin.impl.Neo4jDelegateProviderImpl.getNodeAttributeValue(Neo4jDelegateProviderImpl.java:36)
    at org.gephi.data.attributes.AttributeValueImpl.getValue(AttributeValueImpl.java:81)
    at org.gephi.data.attributes.AttributeValueImpl.equals(AttributeValueImpl.java:103)
    at org.gephi.data.attributes.AttributeRowImpl.setValue(AttributeRowImpl.java:153)
    at org.gephi.data.attributes.AttributeRowImpl.setValue(AttributeRowImpl.java:141)
    at org.gephi.data.attributes.AttributeRowImpl.setValue(AttributeRowImpl.java:128)
    at org.gephi.data.attributes.AttributeRowImpl.setValue(AttributeRowImpl.java:110)
    at org.gephi.neo4j.plugin.impl.GraphModelImportConverter.fillGephiNodeDataWithNeoNodeData(GraphModelImportConverter.java:162)
    at org.gephi.neo4j.plugin.impl.GraphModelImportConverter.createGephiNodeFromNeoNode(GraphModelImportConverter.java:134)
    at org.gephi.neo4j.plugin.impl.Neo4jImporterImpl.processNode(Neo4jImporterImpl.java:181)
    at org.gephi.neo4j.plugin.impl.Neo4jImporterImpl.importNodes(Neo4jImporterImpl.java:175)
    at org.gephi.neo4j.plugin.impl.Neo4jImporterImpl.importGraph(Neo4jImporterImpl.java:153)
    at org.gephi.neo4j.plugin.impl.Neo4jImporterImpl.doImport(Neo4jImporterImpl.java:137)
    at org.gephi.neo4j.plugin.impl.Neo4jImporterImpl.importDatabase(Neo4jImporterImpl.java:131)
    at org.gephi.neo4j.plugin.impl.Neo4jImporterImpl.importDatabase(Neo4jImporterImpl.java:77)
    at org.gephi.desktop.neo4j.Neo4jMenuAction$FullImportMenuAction$1.run(Neo4jMenuAction.java:238)
[catch] at org.gephi.utils.longtask.api.LongTaskExecutor$RunningLongTask.run(LongTaskExecutor.java:251)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
    at java.util.concurrent.FutureTask.run(FutureTask.java:262)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:744)

If I ignore non-Long properties or set attributes directly (without Neo4jDelegateProviderImpl) everything works as expected.

See: https://github.com/rasch/gephi-plugins/commit/b815072c3d4dd57992da7dbdbcdf3c2012b9573f and https://github.com/rasch/gephi-plugins/commit/513c8761fa9219bd26e962c963a8b534d8ed1d6a

[neo4j-plugin] REST Support

Can we explore getting the plugin to work with the REST API for those of us who are doing things like running with a server cluster and don't have a single unified copy of the DB

project cannot be built

Hello,

I cloned the git repo and tried to run the project in NetBeans. Some dependencies cannot be downloaded. I didn't make any changes after cloning. Can anyone give a solution?

Thanks

Error trace:

[ERROR] Failed to execute goal on project gephi-plugins: Could not resolve dependencies for project org.gephi:gephi-plugins:pom:0.9.0: The following artifacts could not be resolved: org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-startup:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-bootstrap:nbm-file:RELEASE81, org.netbeans.api:org-openide-modules:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-lookup:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-ui:nbm-file:RELEASE81, org.netbeans.api:org-openide-util:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-annotations-common:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-intent:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-io:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-compat8:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-nb:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-templates:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-io-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multitabs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multiview:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-nativeaccess:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-network:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-lib-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-javafx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna-platform:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-applemenu:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-autoupdate-cli:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-services:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-editor-mimelookup:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-fallback:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-impl:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-keyring:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-linux:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-macosx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-nio2:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-masterfs-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-options-api:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-options-keymap:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-progress-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-queries:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-sendopts:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-settings:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-templates:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-spi-quicksearch:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-outline:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-plaf:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-tabcontrol:nbm-file:RELEASE81, org.netbeans.api:org-openide-actions:nbm-file:RELEASE81, org.netbeans.api:org-openide-awt:nbm-file:RELEASE81, org.netbeans.api:org-openide-dialogs:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution:nbm-file:RELEASE81, org.netbeans.api:org-openide-explorer:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-nb:nbm-file:RELEASE81, org.netbeans.api:org-openide-io:nbm-file:RELEASE81, org.netbeans.api:org-openide-loaders:nbm-file:RELEASE81, org.netbeans.api:org-openide-nodes:nbm-file:RELEASE81, org.netbeans.api:org-openide-text:nbm-file:RELEASE81, org.netbeans.api:org-openide-windows:nbm-file:RELEASE81: Could not find artifact org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81 in oss-sonatype (https://oss.sonatype.org/content/repositories/snapshots/) -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project gephi-plugins: Could not resolve dependencies for project org.gephi:gephi-plugins:pom:0.9.0: The following artifacts could not be resolved: org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-startup:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-bootstrap:nbm-file:RELEASE81, org.netbeans.api:org-openide-modules:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-lookup:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-ui:nbm-file:RELEASE81, org.netbeans.api:org-openide-util:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-annotations-common:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-intent:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-io:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-compat8:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-nb:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-templates:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-io-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multitabs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multiview:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-nativeaccess:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-network:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-lib-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-javafx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna-platform:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-applemenu:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-autoupdate-cli:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-services:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-editor-mimelookup:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-fallback:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-impl:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-keyring:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-linux:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-macosx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-nio2:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-masterfs-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-options-api:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-options-keymap:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-progress-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-queries:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-sendopts:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-settings:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-templates:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-spi-quicksearch:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-outline:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-plaf:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-tabcontrol:nbm-file:RELEASE81, org.netbeans.api:org-openide-actions:nbm-file:RELEASE81, org.netbeans.api:org-openide-awt:nbm-file:RELEASE81, org.netbeans.api:org-openide-dialogs:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution:nbm-file:RELEASE81, org.netbeans.api:org-openide-explorer:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-nb:nbm-file:RELEASE81, org.netbeans.api:org-openide-io:nbm-file:RELEASE81, org.netbeans.api:org-openide-loaders:nbm-file:RELEASE81, org.netbeans.api:org-openide-nodes:nbm-file:RELEASE81, org.netbeans.api:org-openide-text:nbm-file:RELEASE81, org.netbeans.api:org-openide-windows:nbm-file:RELEASE81: Could not find artifact org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81 in oss-sonatype (https://oss.sonatype.org/content/repositories/snapshots/)
at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.getDependencies(LifecycleDependencyResolver.java:210)
at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.resolveProjectDependencies(LifecycleDependencyResolver.java:117)
at org.apache.maven.lifecycle.internal.MojoExecutor.ensureDependenciesAreResolved(MojoExecutor.java:258)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:201)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: org.apache.maven.project.DependencyResolutionException: Could not resolve dependencies for project org.gephi:gephi-plugins:pom:0.9.0: The following artifacts could not be resolved: org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-startup:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-bootstrap:nbm-file:RELEASE81, org.netbeans.api:org-openide-modules:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-lookup:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-ui:nbm-file:RELEASE81, org.netbeans.api:org-openide-util:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-annotations-common:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-intent:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-io:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-compat8:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-nb:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-templates:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-io-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multitabs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multiview:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-nativeaccess:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-network:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-lib-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-javafx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna-platform:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-applemenu:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-autoupdate-cli:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-services:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-editor-mimelookup:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-fallback:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-impl:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-keyring:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-linux:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-macosx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-nio2:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-masterfs-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-options-api:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-options-keymap:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-progress-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-queries:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-sendopts:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-settings:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-templates:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-spi-quicksearch:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-outline:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-plaf:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-tabcontrol:nbm-file:RELEASE81, org.netbeans.api:org-openide-actions:nbm-file:RELEASE81, org.netbeans.api:org-openide-awt:nbm-file:RELEASE81, org.netbeans.api:org-openide-dialogs:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution:nbm-file:RELEASE81, org.netbeans.api:org-openide-explorer:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-nb:nbm-file:RELEASE81, org.netbeans.api:org-openide-io:nbm-file:RELEASE81, org.netbeans.api:org-openide-loaders:nbm-file:RELEASE81, org.netbeans.api:org-openide-nodes:nbm-file:RELEASE81, org.netbeans.api:org-openide-text:nbm-file:RELEASE81, org.netbeans.api:org-openide-windows:nbm-file:RELEASE81: Could not find artifact org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81 in oss-sonatype (https://oss.sonatype.org/content/repositories/snapshots/)
at org.apache.maven.project.DefaultProjectDependenciesResolver.resolve(DefaultProjectDependenciesResolver.java:189)
at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.getDependencies(LifecycleDependencyResolver.java:185)
... 22 more
Caused by: org.sonatype.aether.resolution.DependencyResolutionException: The following artifacts could not be resolved: org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-startup:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-bootstrap:nbm-file:RELEASE81, org.netbeans.api:org-openide-modules:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-lookup:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-ui:nbm-file:RELEASE81, org.netbeans.api:org-openide-util:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-annotations-common:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-intent:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-io:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-compat8:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-nb:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-templates:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-io-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multitabs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multiview:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-nativeaccess:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-network:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-lib-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-javafx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna-platform:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-applemenu:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-autoupdate-cli:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-services:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-editor-mimelookup:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-fallback:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-impl:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-keyring:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-linux:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-macosx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-nio2:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-masterfs-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-options-api:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-options-keymap:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-progress-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-queries:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-sendopts:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-settings:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-templates:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-spi-quicksearch:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-outline:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-plaf:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-tabcontrol:nbm-file:RELEASE81, org.netbeans.api:org-openide-actions:nbm-file:RELEASE81, org.netbeans.api:org-openide-awt:nbm-file:RELEASE81, org.netbeans.api:org-openide-dialogs:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution:nbm-file:RELEASE81, org.netbeans.api:org-openide-explorer:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-nb:nbm-file:RELEASE81, org.netbeans.api:org-openide-io:nbm-file:RELEASE81, org.netbeans.api:org-openide-loaders:nbm-file:RELEASE81, org.netbeans.api:org-openide-nodes:nbm-file:RELEASE81, org.netbeans.api:org-openide-text:nbm-file:RELEASE81, org.netbeans.api:org-openide-windows:nbm-file:RELEASE81: Could not find artifact org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81 in oss-sonatype (https://oss.sonatype.org/content/repositories/snapshots/)
at org.sonatype.aether.impl.internal.DefaultRepositorySystem.resolveDependencies(DefaultRepositorySystem.java:375)
at org.apache.maven.project.DefaultProjectDependenciesResolver.resolve(DefaultProjectDependenciesResolver.java:183)
... 23 more
Caused by: org.sonatype.aether.resolution.ArtifactResolutionException: The following artifacts could not be resolved: org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-startup:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-asm:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-bootstrap:nbm-file:RELEASE81, org.netbeans.api:org-openide-modules:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-lookup:nbm-file:RELEASE81, org.netbeans.api:org-openide-util-ui:nbm-file:RELEASE81, org.netbeans.api:org-openide-util:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-annotations-common:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-intent:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-io:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-compat8:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress-nb:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-progress:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-api-templates:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-io-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multitabs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-core-multiview:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-nativeaccess:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-network:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-core:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-lib-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-libs-javafx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna-platform:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-libs-jna:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-applemenu:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-autoupdate-cli:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-services:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-autoupdate-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-editor-mimelookup:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-fallback:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-keyring-impl:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-keyring:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-linux:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-macosx:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-nio2:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-masterfs-ui:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs-windows:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-masterfs:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-options-api:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-options-keymap:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-progress-ui:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-queries:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-sendopts:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-settings:nbm-file:RELEASE81, org.netbeans.modules:org-netbeans-modules-templates:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-modules-uihandler:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-spi-quicksearch:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-outline:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-plaf:nbm-file:RELEASE81, org.netbeans.api:org-netbeans-swing-tabcontrol:nbm-file:RELEASE81, org.netbeans.api:org-openide-actions:nbm-file:RELEASE81, org.netbeans.api:org-openide-awt:nbm-file:RELEASE81, org.netbeans.api:org-openide-dialogs:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution-compat8:nbm-file:RELEASE81, org.netbeans.api:org-openide-execution:nbm-file:RELEASE81, org.netbeans.api:org-openide-explorer:nbm-file:RELEASE81, org.netbeans.api:org-openide-filesystems-nb:nbm-file:RELEASE81, org.netbeans.api:org-openide-io:nbm-file:RELEASE81, org.netbeans.api:org-openide-loaders:nbm-file:RELEASE81, org.netbeans.api:org-openide-nodes:nbm-file:RELEASE81, org.netbeans.api:org-openide-text:nbm-file:RELEASE81, org.netbeans.api:org-openide-windows:nbm-file:RELEASE81: Could not find artifact org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81 in oss-sonatype (https://oss.sonatype.org/content/repositories/snapshots/)
at org.sonatype.aether.impl.internal.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:538)
at org.sonatype.aether.impl.internal.DefaultArtifactResolver.resolveArtifacts(DefaultArtifactResolver.java:216)
at org.sonatype.aether.impl.internal.DefaultRepositorySystem.resolveDependencies(DefaultRepositorySystem.java:358)
... 24 more
Caused by: org.sonatype.aether.transfer.ArtifactNotFoundException: Could not find artifact org.netbeans.modules:org-netbeans-core-startup-base:nbm-file:RELEASE81 in oss-sonatype (https://oss.sonatype.org/content/repositories/snapshots/)
at org.sonatype.aether.connector.wagon.WagonRepositoryConnector$4.wrap(WagonRepositoryConnector.java:947)
at org.sonatype.aether.connector.wagon.WagonRepositoryConnector$4.wrap(WagonRepositoryConnector.java:941)
at org.sonatype.aether.connector.wagon.WagonRepositoryConnector$GetTask.run(WagonRepositoryConnector.java:669)
at org.sonatype.aether.util.concurrency.RunnableErrorForwarder$1.run(RunnableErrorForwarder.java:60)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)
[ERROR]
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

Layout axial symmetry

Hello,

It could be fine to have a layout plugin to perform axial symmetry (horizontal and vertical)
For tow reasons :

  • when you do several versions of a map you need have them in the same configuration. From now you have to re spatilize until you obtain the same configuration
  • sigma.js exporter haven't the same localization system so there is a horizontal symmetry between the dynamic map (sigma.js) and the static one (.svg) you produce with Gephi

This request is not very important but it could be fine and probably easy to to
Thanks for your work

Improving Default Permissions on Windows

After cloning this project to a windows machine, opening in NetBeans 7.4 and building, I cannot successfully run the project. I get Access Denied errors on .dll and .exe files in gephi-plugins/platforms/*.

python-scripting-plugin: get the avg. path length of the graph

Dear gephi developers, first of all, thanks for making this python scripting console.
My goal: I am trying to get the characteristic path length of the graph.

This feature required building the toolkit java libraries from the source.
Then, I added the libs.jar to the sys.path.
then, with the following scheme I could access their underlying classes

from org.gephi.project.api import ProjectController

The problem is that, in order to get to my goal (execute the statistic graphDistance)
two inputs are required: 1) GraphModel or HierarchicalGraph 2) attributeModel

1)A valid first input can be obtained through

gu =g.getUnderlyingGraph()
gu is a subclass of HierarchicalGraph, so it's ok
gu.class.bases[0].bases[0]
< type 'org.gephi.graph.api.HierarchicalGraph'>

  1. The second input seems to be more problematic.
    it should be of type: org.gephi.data.attributes.api.AttributeModel
    How do I get to this?

here is what I tried:

GraphController.getModel() #getGraphModel()
AttributeController.getModel() #getAttributeModel()
AttributeController.getModel().getDirectedGraph()
AttributeController.getModel().getDirectedGraph().getGraph()

All of these complain that no argument is given:
File "", line 1, in
TypeError: getModel(): expected 1-2 args; got 0

Their autocompletion suggest that either giving no arg shoud be ok (but it doesn't work) either arg should be Workspace.
I can't get even get the workspace, for the same reason:

ProjectController.closeCurrentProject()
ProjectController.newProject();
ProjectController.getCurrentWorkspace()
ProjectController.getCurrentProject().

Strange enough, all of these should require no arguments, but my command line replies the same error:
File "", line 1, in
TypeError: getModel(): expected 1-2 args; got 0

Do you guys have a suggestion how to obtain the attributemodel, or even better how to reach directly the average path length?

Labels: python scripting plugin

Won't import Neo4j 2.1.2 databases.

I suspect a small update needs to be performed. I'm new to all of this, so I'm afraid I can't figure out precisely what isn't working. I'm happy to test, send logs and screen shots or whatever. Is this project still alive? It would be a shame if it died as this seems to be the best/easiest way to visualize Neo4j data.

[neo4j-plugin] Node labels are not imported

Currently, node labels are not imported. As a neo4j node might have multiple labels, an import should, in analogy to neo4j_relationship_type property for relationships, have a neo4j_node_label property of type LIST_STRING (though I'm not sure how well operations on LINE_STRING properties are supported?)

neo4j 2.2 support

Please add neo4j 2.2(.1) support, as neo4j has major performance improvements in 2.2.

At the moment it only gives an empty warning if I try to import (and yes, database is shut down.)

Cheers :)

Python Script console Access to Gephi Toolbox libraries (.jar)

Dear Gephi developers,
Me and other people, we are running a project through the python script console: overall it works great.
However we seem stucked on one issue: we can not load, open or do anything with the gephi-toolkit.jar library. This should contain a good amount of functions that are unaccessible to us otherwise. Indeed out aim is to work with the org.gephi.graph.api
We tried several ways to access it (add the path, import it, move the library in a known path, and others ) but none of this worked.
Could you pleasee help us find a worl-around? We'll be very grateful.
Michele and 3 more desperate people

Gephi-plugins v0.8.2 in Netbeans 7.2.1 does not load some modules

Hi,

I've cloned the gephi-plugins (0.8.2) and trying to run it out of the box from the latest netbeans (7.2.1) it appears to run OK initially but then raises some exceptions, see below, and certain modules such as the statistics panel do not load. Same issue on Window Vista/7 and Ubuntu -
Must be something basic as I have not seen this issue on-line.

Any help appreciated.
Ken, Netbeans newbie

platform.download:

WARNING [org.netbeans.core.modules]: had to upgrade dependencies for module org.gephi.ui.project: added = [module org.openide.awt] removed = []; details: [SaveCookie extends Savable. To compile you need to include openide.awt on classpath.]
Loading native libraries
WARNING [org.netbeans.core.startup.InstalledFileLocatorImpl]: no such module C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\platform\gephi\update_tracking\org-gephi-visualization-impl.xml at org.gephi.visualization.opengl.JOGLNativesInstaller.restored(JOGLNativesInstaller.java:71)
Loading native libraries
INFO [org.netbeans.core.startup.NbEvents]: Turning on modules:
org.openide.util.lookup [8.15.2 201210100934]
org.openide.util [8.25.2 201210100934]
org.openide.modules [7.32.1 201210100934]
org.openide.filesystems [7.62.1 201210100934]
org.netbeans.api.annotations.common/1 [1.14.1 201210100934]
org.openide.awt [7.46.1 201210100934]
org.netbeans.api.progress/1 [1.28.1 201210100934]
org.openide.dialogs [7.25.1 201210100934]
org.openide.nodes [7.28.1 201210100934]
org.openide.windows [6.55.2 201210100934]
org.netbeans.modules.editor.mimelookup/1 [1.26.1 201210100934]
org.openide.text [6.49.3 201210100934]
org.netbeans.swing.tabcontrol [1.36.1 201210100934]
org.netbeans.swing.outline [1.20.1 201210100934]
org.openide.explorer [6.45.1 201210100934]
org.openide.actions [6.26.1 201210100934]
org.netbeans.modules.queries/1 [1.28.1 201210100934]
org.openide.loaders [7.37.3 201210100934]
org.openide.io [1.31.2 201210100934]
org.netbeans.swing.plaf [1.25.1 201210100934]
org.netbeans.swing.dirchooser [1.1 120322]
org.netbeans.spi.quicksearch [1.14.1 201210100934]
org.netbeans.bootstrap/1 [2.52.3 201210100934]
org.netbeans.core.startup/1 [1.40.1 201210100934]
org.netbeans.modules.settings/1 [1.35.1 201210100934]
org.netbeans.modules.sendopts/2 [2.22.1 201210100934]
org.netbeans.modules.sampler [1.1.1 201210100934]
org.netbeans.modules.progress.ui [1.20.1 201210100934]
org.netbeans.modules.print [7.13.1 201210100934]
org.netbeans.modules.keyring [1.11.1 201210100934]
org.netbeans.core/2 [3.33.1 201210100934]
org.netbeans.modules.options.api/1 [1.26.1 201210100934]
org.netbeans.modules.options.keymap [1.19.2 201210100934]
org.netbeans.modules.masterfs/2 [2.38.2 201210100934]
org.netbeans.libs.jna/1 [1.21.1 201210100934]
org.netbeans.modules.masterfs.windows [1.1.1 201210100934]
org.netbeans.modules.keyring.impl [1.7.1 201210100934]
org.netbeans.modules.favorites/1 [1.29.1 201210100934]
org.netbeans.modules.editor.mimelookup.impl/1 [1.18.1 201210100934]
org.netbeans.modules.autoupdate.services [1.33.2 201210100934]
org.netbeans.core.ui/1 [1.31.1 201210100934]
org.netbeans.modules.autoupdate.ui [1.27.3 201210100934]
org.netbeans.libs.osgi [1.9.1 201210100934]
org.netbeans.libs.felix [2.3.1 201210100934]
org.netbeans.core.windows/2 [2.49.3 201210100934]
org.netbeans.modules.core.kit [1.16.1 201210100934]
org.netbeans.libs.junit4 [1.14 201210100934]
org.netbeans.core.output2/1 [1.26.1 201210100934]
org.netbeans.core.netigso [1.16.1 201210100934]
org.netbeans.core.nativeaccess/1 [1.16.1 201210100934]
org.netbeans.core.io.ui/1 [1.16.1 201210100934]
org.jdesktop.swingx [1.6.1 120322]
org.gephi.utils.longtask [0.8.2 0.8.2-20121118 201211181702]
org.gephi.project.api [0.8.2 0.8.2-20121118 201211181703]
org.gephi.core.library.wrapper [0.8.2 0.8.2-20121118 201211181703]
org.gephi.utils [0.8.2 0.8.2-20121118 201211181703]
org.gephi.graph.api [0.8.2 0.8.2-20121118 201211181703]
org.gephi.data.attributes.api [0.8.2 0.8.2-20121118 201211181703]
org.gephi.lib.validation [0.8.2 0.8.2-20121118 201211181703]
org.gephi.ui.utils [0.8.2 0.8.2-20121118 201211181705]
org.gephi.ui.library.wrapper [0.8.2 0.8.2-20121118 201211181704]
org.gephi.ui.components [0.8.2 0.8.2-20121118 201211181705]
org.gephi.workspace.ui [0.8.2 0.8.2-20121118 201211181708]
org.gephi.db.drivers [0.8.2 0.8.2-20121118 201211181704]
org.gephi.dynamic.api [0.8.2 0.8.2-20121118 201211181704]
org.gephi.io.importer.api [0.8.2 0.8.2-20121118 201211181704]
org.gephi.mostrecentfiles.api [0.8.2 0.8.2-20121118 201211181707]
org.gephi.desktop.project [0.8.2 0.8.2-20121118 201211181707]
org.gephi.welcome.screen [0.8.2 0.8.2-20121118 201211181708]
org.gephi.datalab.api [0.8.2 0.8.2-20121118 201211181704]
org.gephi.visualization.api [0.8.2 0.8.2-20121118 201211181704]
org.gephi.tools.api [0.8.2 0.8.2-20121118 201211181707]
org.gephi.utils.collection [0.8.2 0.8.2-20121118 201211181707]
org.gephi.gleem [0.8.2 0.8.2-20121118 201211181707]
org.gephi.visualization [0.8.2 0.8.2-20121118 201211181707]
org.gephi.ui.workspace [0.8.1.0 120322]
org.gephi.ui.upgrader [0.8 120322]
org.gephi.statistics.api [0.8.2 0.8.2-20121118 201211181706]
org.gephi.statistics.plugin [0.8.2 0.8.2-20121118 201211181706]
org.gephi.ui.statistics.plugin [0.8.0.4 120323]
org.gephi.lib.jcalendar [1.0 120322]
org.gephi.lib.javacsv [2.0 120322]
org.gephi.lib.javamail [1.0 120322]
org.gephi.io.spigot.plugin [0.8.0.1 120322]
org.gephi.ui.spigot.plugin [0.8 120322]
org.gephi.ranking.api [0.8.2 0.8.2-20121118 201211181705]
org.gephi.ranking.plugin [0.8.2 0.8.2-20121118 201211181705]
org.gephi.ui.ranking.plugin [0.8.1.2 120328]
org.gephi.ui.propertyeditor [0.8.2 0.8.2-20121118 201211181709]
org.gephi.ui.project [0.8 120322]
org.gephi.lib.beansbinding [1.2.1 120322]
org.gephi.io.processor.plugin [0.8.2 0.8.2-20121118 201211181705]
org.gephi.ui.processor.plugin [0.8 120322]
org.gephi.partition.api [0.8.2 0.8.2-20121118 201211181710]
org.gephi.partition.plugin [0.8.2 0.8.2-20121118 201211181713]
org.gephi.ui.partition.plugin [0.8 120322]
org.gephi.io.database.drivers [0.8.0.3 120322]
org.gephi.io.importer.plugin [0.8.2 0.8.2-20121118 201211181710]
org.gephi.ui.importer.plugin [0.8.0.2 120322]
org.gephi.io.generator.api [0.8.2 0.8.2-20121118 201211181708]
org.gephi.io.generator.plugin [0.8.2 0.8.2-20121118 201211181708]
org.gephi.ui.generator.plugin [0.8 120322]
org.gephi.timeline [0.8.2 0.8.2-20121118 201211181706]
org.gephi.filters.api [0.8.2 0.8.2-20121118 201211181709]
org.gephi.filters.plugin [0.8.2 0.8.2-20121118 201211181710]
org.gephi.perspective.api [0.8.2 0.8.2-20121118 201211181711]
org.gephi.desktop.perspective [0.8.2.1 120322]
org.gephi.ui.filters.plugin [0.8.0.6 120323]
org.gephi.lib.itext [5.0.1 120322]
org.gephi.io.exporter.api [0.8.2 0.8.2-20121118 201211181703]
org.gephi.preview.api [0.8.2 0.8.2-20121118 201211181703]
org.gephi.io.exporter.preview [0.8.2 0.8.2-20121118 201211181703]
org.gephi.ui.exporter.preview [0.8.0.1 120322]
org.gephi.io.exporter.plugin [0.8.2 0.8.2-20121118 201211181709]
org.gephi.ui.exporter.plugin [0.8.0.5 120322]
org.gephi.lib.timing [1.1 120322]
org.gephi.ui.components.SplineEditor [0.8.0.1 120322]
org.gephi.algorithms.plugin [0.8.2 0.8.2-20121118 201211181707]
org.gephi.tools.plugin [0.8.2 0.8.2-20121118 201211181707]
org.gephi.statistics.plugin.ui [0.8.2 0.8.2-20121118 201211181706]
org.gephi.spline.editor [0.8.2 0.8.2-20121118 201211181706]
org.gephi.spigot.plugin [0.8.2 0.8.2-20121118 201211181706]
org.gephi.spigot.plugin.ui [0.8.2 0.8.2-20121118 201211181706]
org.gephi.settings.upgrader [0.8.2 0.8.2-20121118 201211181706]
org.gephi.ranking.plugin.ui [0.8.2 0.8.2-20121118 201211181705]
org.gephi.project.ui [0.8.2 0.8.2-20121118 201211181705]
org.gephi.processor.plugin.ui [0.8.2 0.8.2-20121118 201211181705]
org.gephi.preview.plugin [0.8.2 0.8.2-20121118 201211181704]
org.gephi.preview.export.ui [0.8.2 0.8.2-20121118 201211181704]
org.gephi.partition.plugin.ui [0.8.2 0.8.2-20121118 201211181713]
org.gephi.lib.jogl [1.1.0.3 120322]
org.gephi.lib.processing [1.5.1 120322]
org.gephi.lib.gleem [1.0 120322]
org.gephi.lib.commonscompress [1.1 120322]
org.gephi.layout.api [0.8.2 0.8.2-20121118 201211181708]
org.gephi.layout.plugin [0.8.2 0.8.2-20121118 201211181709]
org.gephi.import.plugin.ui [0.8.2 0.8.2-20121118 201211181711]
org.gephi.graph.dhns [0.8.2 0.8.2-20121118 201211181710]
org.gephi.gephi.branding [0.8.2 0.8.2-20121118 201211181702]
org.gephi.generator.plugin.ui [0.8.2 0.8.2-20121118 201211181708]
org.gephi.filters.plugin.ui [0.8.2 0.8.2-20121118 201211181712]
org.gephi.filters.impl [0.8.2 0.8.2-20121118 201211181711]
org.gephi.filters [0.8.0.5 120326]
org.gephi.export.plugin.ui [0.8.2 0.8.2-20121118 201211181711]
org.gephi.dynamic.impl [0.8.2 0.8.2-20121118 201211181712]
org.gephi.dynamic [0.8.0.5 120323]
org.gephi.directory.chooser [0.8.2 0.8.2-20121118 201211181713]
org.gephi.desktop.mrufiles.api [0.8 120322]
org.gephi.desktop.welcome [0.8.0.3 120322]
org.gephi.desktop.tools [0.8.2 0.8.2-20121118 201211181713]
org.gephi.desktop.timeline [0.8.2 0.8.2-20121118 201211181713]
org.gephi.desktop.statistics [0.8.2 0.8.2-20121118 201211181709]
org.gephi.desktop.spigot [0.8.2 0.8.2-20121118 201211181709]
org.gephi.desktop.recentfiles [1.0.1 120322]
org.gephi.desktop.recent.files [0.8.2 0.8.2-20121118 201211181711]
org.gephi.desktop.ranking [0.8.2 0.8.2-20121118 201211181709]
org.gephi.desktop.progress [0.8.2 0.8.2-20121118 201211181708]
org.gephi.desktop.io.export [0.8.2 0.8.2-20121118 201211181711]
org.gephi.desktop.preview [0.8.2 0.8.2-20121118 201211181712]
org.gephi.desktop.partition [0.8.2 0.8.2-20121118 201211181710]
org.gephi.desktop.layout [0.8.2 0.8.2-20121118 201211181712]
org.gephi.desktop.importer [0.8.0.1 120322]
org.gephi.desktop.import [0.8.2 0.8.2-20121118 201211181712]
org.gephi.desktop.hierarchy [0.8.2 0.8.2-20121118 201211181711]
org.gephi.desktop.generate [0.8.2 0.8.2-20121118 201211181709]
org.gephi.desktop.filters [0.8.2 0.8.2-20121118 201211181713]
org.gephi.desktop.datalab [0.8.2 0.8.2-20121118 201211181710]
org.gephi.desktop.context [0.8.2 0.8.2-20121118 201211181708]
org.gephi.clustering.api [0.8.2 0.8.2-20121118 201211181709]
org.gephi.desktop.clustering [0.8.2 0.8.2-20121118 201211181711]
org.gephi.desktop.branding [0.8.2 0.8.2-20121118 201211181708]
org.gephi.datalab.plugin [0.8.2 0.8.2-20121118 201211181712]
org.gephi.data.attributes [0.8.0.3 120322]
org.gephi.clustering.plugin [0.8.2 0.8.2-20121118 201211181713]
org.gephi.branding.desktop [0.8.0.8 120322]
org.gephi.attributes [0.8.2 0.8.2-20121118 201211181710]
org.gephi.algorithms [0.8.0.1 120322]
org.netbeans.core.windows.view.ui.MainWindow$5[null.nbGlassPane,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=16777217,maximumSize=,minimumSize=,preferredSize=]
INFO [org.netbeans.core.windows.persistence]: [PersistenceManager.getTopComponentForID] Problem when deserializing TopComponent for tcID:'StatisticsTopComponent'. Reason: null
Content:

Class: class org.gephi.desktop.statistics.StatisticsTopComponent Source: MultiFileObject@78b051e2[Windows2Local-overview/Components/StatisticsTopComponent.settings] Content: Class: class org.gephi.desktop.statistics.StatisticsTopComponent Source: MultiFileObject@78b051e2[Windows2Local-overview/Components/StatisticsTopComponent.settings] Caused: java.lang.AbstractMethodError: org.gephi.ui.statistics.plugin.DegreeUI.getShortDescription()Ljava/lang/String; at org.gephi.desktop.statistics.StatisticsFrontEnd.initUI(StatisticsFrontEnd.java:121) at org.gephi.desktop.statistics.StatisticsFrontEnd.(StatisticsFrontEnd.java:94) at org.gephi.desktop.statistics.StatisticsPanel.initFrontEnds(StatisticsPanel.java:162) at org.gephi.desktop.statistics.StatisticsPanel.(StatisticsPanel.java:75) at org.gephi.desktop.statistics.StatisticsTopComponent.initComponents(StatisticsTopComponent.java:188) at org.gephi.desktop.statistics.StatisticsTopComponent.(StatisticsTopComponent.java:87) Caused: java.lang.reflect.InvocationTargetException at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at org.netbeans.modules.settings.convertors.XMLSettingsSupport$SettingsRecognizer.instanceCreate(XMLSettingsSupport.java:608) Caused: java.io.IOException at org.netbeans.modules.settings.convertors.XMLSettingsSupport$SettingsRecognizer.instanceCreate(XMLSettingsSupport.java:610) at org.netbeans.modules.settings.convertors.SerialDataConvertor$SettingsInstance.instanceCreate(SerialDataConvertor.java:424) [catch] at org.netbeans.core.windows.persistence.PersistenceManager.getTopComponentPersistentForID(PersistenceManager.java:571) at org.netbeans.core.windows.persistence.PersistenceManager.getTopComponentForID(PersistenceManager.java:681) at org.netbeans.core.windows.PersistenceHandler.getTopComponentForID(PersistenceHandler.java:489) at org.netbeans.core.windows.PersistenceHandler.initModeFromConfig(PersistenceHandler.java:449) at org.netbeans.core.windows.PersistenceHandler.load(PersistenceHandler.java:214) at org.netbeans.core.windows.WindowSystemImpl.load(WindowSystemImpl.java:81) at org.netbeans.core.GuiRunLevel$InitWinSys.run(GuiRunLevel.java:234) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:721) at java.awt.EventQueue.access$200(EventQueue.java:103) at java.awt.EventQueue$3.run(EventQueue.java:682) at java.awt.EventQueue$3.run(EventQueue.java:680) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:691) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:158) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138) at java.awt.EventDispatchThread.run(EventDispatchThread.java:91) Content: ALL [null]: Class: class org.gephi.desktop.statistics.StatisticsTopComponent ALL [null]: Source: MultiFileObject@78b051e2[Windows2Local-overview/Components/StatisticsTopComponent.settings] Current Version is testuserdir Current Version is testuserdir WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.desktop.mrufiles.api.MostRecentFiles arbitrarily from one of ModuleCL@5d103a97[org.gephi.mostrecentfiles.api] and ModuleCL@236077c2[org.gephi.desktop.mrufiles.api] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE WARNING [org.openide.util.lookup.MetaInfServicesLookup]: org.gephi.desktop.mrufiles.api.MostRecentFiles could not be found in SystemClassLoader[177 modules] WARNING [org.netbeans.core.windows.WindowManagerImpl] java.lang.NullPointerException at org.gephi.desktop.welcome.WelcomeTopComponent.loadMRU(WelcomeTopComponent.java:155) at org.gephi.desktop.welcome.WelcomeTopComponent.(WelcomeTopComponent.java:93) at org.gephi.desktop.welcome.WelcomeTopComponent.getInstance(WelcomeTopComponent.java:80) at org.gephi.desktop.welcome.Installer$1.run(Installer.java:61) [catch] at org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1508) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:721) at java.awt.EventQueue.access$200(EventQueue.java:103) at java.awt.EventQueue$3.run(EventQueue.java:682) at java.awt.EventQueue$3.run(EventQueue.java:680) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:691) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:158) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138) at java.awt.EventDispatchThread.run(EventDispatchThread.java:91) WARNING [org.netbeans.TopSecurityManager]: use of system property netbeans.user has been obsoleted in favor of InstalledFileLocator/Places at org.gephi.ui.upgrader.Upgrader.getCurrentVersion(Upgrader.java:123) SEVERE [global] java.lang.ClassNotFoundException: net.miginfocom.swing.MigLayout at java.net.URLClassLoader$1.run(URLClassLoader.java:366) at java.net.URLClassLoader$1.run(URLClassLoader.java:355) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:354) at java.lang.ClassLoader.loadClass(ClassLoader.java:423) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:262) Caused: java.lang.ClassNotFoundException: net.miginfocom.swing.MigLayout starting from ModuleCL@69c5f62c[org.gephi.desktop.welcome] with possible defining loaders [ModuleCL@13e2ca1e[org.gephi.ui.library.wrapper]] and declared parents [ModuleCL@40052776[org.gephi.desktop.project], ModuleCL@71fcb3d3[org.gephi.ui.components], org.netbeans.MainImpl$BootClassLoader@5638680, ModuleCL@7c9a2f1a[org.netbeans.modules.settings], ModuleCL@2ec07b39[org.jdesktop.swingx], ModuleCL@50193bcf[org.gephi.project.api], ModuleCL@4c2a91b1[org.openide.dialogs], ModuleCL@e65aa9c[org.openide.windows], ModuleCL@568a8aa3[org.openide.awt], ModuleCL@236077c2[org.gephi.desktop.mrufiles.api], ...1 more] at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:264) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) Caused: java.lang.NoClassDefFoundError: net/miginfocom/swing/MigLayout at org.gephi.desktop.welcome.WelcomeTopComponent.loadMRU(WelcomeTopComponent.java:150) at org.gephi.desktop.welcome.WelcomeTopComponent.(WelcomeTopComponent.java:93) at org.gephi.desktop.welcome.WelcomeTopComponent.getInstance(WelcomeTopComponent.java:80) at org.gephi.desktop.welcome.Installer$1.run(Installer.java:61) at org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1508) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:721) at java.awt.EventQueue.access$200(EventQueue.java:103) at java.awt.EventQueue$3.run(EventQueue.java:682) at java.awt.EventQueue$3.run(EventQueue.java:680) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:691) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:158) [catch] at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138) at java.awt.EventDispatchThread.run(EventDispatchThread.java:91) GL_VENDOR: Intel GL_RENDERER: Mobile Intel(R) 4 Series Express Chipset Family GL_VERSION: 2.1.0 - Build 8.15.10.1808 Diagnostic information Input arguments: -Dnetbeans.logger.console=true -ea -Xms256m -Xmx1000m -Dsun.java2d.noddraw=true -Dsun.awt.noerasebackground=true -Djdk.home=C:\Program Files\Java\jdk1.7.0_10 -splash:C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\build\testuserdir\var\cache\splash.png -Dnetbeans.home=C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\platform\platform -Dnetbeans.user=C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\build\testuserdir -Dnetbeans.default_userdir_root= -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\build\testuserdir\var\log\heapdump.hprof -Dnetbeans.system_http_proxy=DIRECT -Dsun.awt.keepWorkingSetOnMinimize=true -Dnetbeans.dirs=C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\build\cluster;C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\platform\gephi;C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\platform\harness;C:\Users\Kenny\Documents\NetBeansProjects\gephi-plugins\platform\platform Compiler: HotSpot 64-Bit Tiered Compilers Heap memory usage: initial 256.0MB maximum 888.9MB Non heap memory usage: initial 23.2MB maximum 130.0MB Garbage collector: PS Scavenge (Collections=3 Total time spent=0s) Garbage collector: PS MarkSweep (Collections=0 Total time spent=0s) Classes: loaded=6338 total loaded=6338 unloaded 0 INFO [org.netbeans.core.ui.warmup.DiagnosticTask]: Total memory 4,253,405,184 INFO [null]: Total physical memory 4,253,405,184 WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.NewProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.NewProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.OpenFile arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.OpenFile arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.desktop.recentfiles.RecentFiles arbitrarily from one of ModuleCL@1ba14608[org.gephi.desktop.recentfiles] and ModuleCL@6b5a572f[org.gephi.desktop.recent.files] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.desktop.recentfiles.RecentFiles arbitrarily from one of ModuleCL@1ba14608[org.gephi.desktop.recentfiles] and ModuleCL@6b5a572f[org.gephi.desktop.recent.files] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.CloseProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.CloseProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.ProjectProperties arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.ProjectProperties arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.desktop.importer.ImportDB arbitrarily from one of ModuleCL@643a498c[org.gephi.desktop.importer] and ModuleCL@7da1f182[org.gephi.desktop.import] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.desktop.importer.ImportDB arbitrarily from one of ModuleCL@643a498c[org.gephi.desktop.importer] and ModuleCL@7da1f182[org.gephi.desktop.import] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.SaveProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.SaveProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.SaveAsProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.File] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.SaveAsProject arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.modules.autoupdate.updateproviders.AutoupdateCatalogFactory]: Services/AutoupdateType/org_gephi_branding_desktop_update_center.instance: url_key attribute deprecated in favor of url SEVERE [org.openide.util.RequestProcessor]: Error in RequestProcessor org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler$6 java.lang.AssertionError: org.openide.util.NbBundle$PBundle@dc27660 should contain key org_gephi_branding_desktop_update_center at org.netbeans.modules.autoupdate.updateprovider.AutoupdateCatalogFactory.createUpdateProvider(AutoupdateCatalogFactory.java:105) at org.netbeans.modules.autoupdate.services.UpdateUnitProviderImpl.getUpdateUnitProviders(UpdateUnitProviderImpl.java:259) at org.netbeans.api.autoupdate.UpdateUnitProviderFactory.getUpdateUnitProviders(UpdateUnitProviderFactory.java:86) at org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler.refreshUpdateCenters(AutoupdateCheckScheduler.java:349) at org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler.scheduleRefreshProviders(AutoupdateCheckScheduler.java:133) at org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler.access$500(AutoupdateCheckScheduler.java:94) at org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler$6.run(AutoupdateCheckScheduler.java:447) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) Caused: org.openide.util.RequestProcessor$SlowItem: task failed due to at org.openide.util.RequestProcessor.post(RequestProcessor.java:435) at org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler$1.run(AutoupdateCheckScheduler.java:118) at org.netbeans.core.windows.WindowManagerImpl$Exclusive$1.run(WindowManagerImpl.java:1508) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:721) at java.awt.EventQueue.access$200(EventQueue.java:103) at java.awt.EventQueue$3.run(EventQueue.java:682) at java.awt.EventQueue$3.run(EventQueue.java:680) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:691) at org.netbeans.core.TimableEventQueue.dispatchEvent(TimableEventQueue.java:158) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138) [catch] at java.awt.EventDispatchThread.run(EventDispatchThread.java:91) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.NewWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Workspace] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.NewWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.DeleteWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Workspace] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.DeleteWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.CleanWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Workspace] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.CleanWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.RenameWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Workspace] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.RenameWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.DuplicateWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Workspace] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.DuplicateWorkspace arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.multilingual.LanguageAction arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Tools] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.multilingual.LanguageAction arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032) WARNING [org.netbeans.ProxyClassLoader]: Will not load class org.gephi.branding.desktop.actions.OpenOnlineDoc arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE INFO [org.openide.loaders.FolderInstance.Menu.Tools] java.lang.ClassNotFoundException: Will not load class org.gephi.branding.desktop.actions.OpenOnlineDoc arbitrarily from one of ModuleCL@75831760[org.gephi.desktop.branding] and ModuleCL@44ee7ba9[org.gephi.branding.desktop] starting from SystemClassLoader[177 modules]; see http://wiki.netbeans.org/DevFaqModuleCCE at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:244) at org.netbeans.ModuleManager$SystemClassLoader.loadClass(ModuleManager.java:713) at java.lang.ClassLoader.loadClass(ClassLoader.java:356) at org.openide.loaders.InstanceSupport.findClass(InstanceSupport.java:502) at org.openide.loaders.InstanceSupport.instanceClass(InstanceSupport.java:148) at org.openide.loaders.InstanceDataObject$Ser.instanceClass(InstanceDataObject.java:1334) at org.openide.loaders.InstanceDataObject.instanceClass(InstanceDataObject.java:809) at org.openide.awt.MenuBar$LazyMenu$MenuFolder.acceptCookie(MenuBar.java:780) [catch] at org.openide.loaders.FolderInstance.acceptDataObject(FolderInstance.java:419) at org.openide.loaders.FolderInstance.defaultProcessObjects(FolderInstance.java:795) at org.openide.loaders.FolderInstance.access$000(FolderInstance.java:103) at org.openide.loaders.FolderInstance$1R.init(FolderInstance.java:693) at org.openide.loaders.FolderInstance$1R.run(FolderInstance.java:720) at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1452) at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2032)

Neo4j database in gephi full import not working - empty warning mess

Hi, I'm having some difficulty in importing a Neo4j database into Gephi using the Neo4j plugin: when I go to File > Neo4j Database > Full Import and try to import a database, I get a popup with an empty warning message. I have also tried a Traversal Import, but after selecting the database, no windows pop up.

Problem in scripting plugin. Need Help. Urgent

(scripting plugin)
I wrote the following piece of code in the console in gephi for changing all the colors of a graph( miserables.gexf)
for v in g.nodes:
... v.color=red

The error is :
Traceback (most recent call last):
File "", line 2, in
AttributeError: 'NoneType' object has no attribute 'color'

I also tried to print the source vertices of edges by the code
for e in g.edges:
print e.source
the error is:
Traceback (most recent call last):
File "", line 2, in
AttributeError: 'org.gephi.scripting.wrappers.GyEdge' object has no attribute 'source'
But, edges do have attributes 'source' and nodes have 'color' attribute as is said in wiki.gephi.org.

What seems to be the problem?? please help!!

Degree equals filters do not work properly

The following command does not work properly:

visible = g.filter(degree == 10)

This can be either a misunderstanding of the Filters API from my end or a problem in the API's implementation itself. The current version of the code builds a filter that matches the degree range [0, 10].

There's a FIXME annotation on the code section that handles these filters. This section is really straightforward and just builds the Range object with the same value on the upper and lower bounds as follows:

protected Query buildEqualsQuery(PyObject match) {
    Integer intMatch = (Integer) match.__tojava__(Integer.class);
    return buildRangeQuery(new Range(intMatch, intMatch, Integer.MIN_VALUE, Integer.MAX_VALUE));
}

Scripting Console shows in all perspectives

The ConsoleTopComponent panel should not appear in all perspectives. Apparently, there's no PerspectiveMember interface in the classpath of the gephi-plugins project setup to fix that (as shown here). What am I missing here?

Failure to edit existing node or relationship properties of an imported Neo4j database

Environment:

  • Windows 7x64
  • JDK 1.7u51 (64-bit)
  • Neo4j Community Edition 2.0.1
  • Gephi 0.8.2-Beta
  • Gephi Neo4j plug-in for Neo4j 2.0.1 (obtained from Gephi Marketplace 3/4/2014)

I downloaded the updated Neo4j plug-in for Gephi, in order to quickly edit properties of an existing Neo4j database. Using an existing 2.0.1 Neo4j DB, I was able to successfully import it into Gephi. I could not, however, edit any of the properties of the existing database.

But I was able to do the following:

  • I can create new property columns and edit these values. (nodes or relationships)
  • I can create copies of existing properties and edit the copied properties (not the originals).
  • After exporting a few changes from Gephi (new properties) to a new Neo4j file location, I can use Cypher queries to change these values in the Neo4j web console. Thus these preexisting properties are only uneditable in Gephi.
  • I tried several different imported Neo4j databases, so it was not limited to one set of data.

This could mean that the Neo4j plug-in locks preexisting properties as it imports the DB into Gephi. I could not discern anything from the Gephi log file, but would be happy to clarify additional questions.

[graph-streaming] Authorization header incorrectly set as a byte[]

This bug was introduced by the substitution of the sun.misc.BASE64Encoder by the org.apache.commons.codec.binary.Base64 encoder. When encoding, the first returns a String while the second returns a byte[]. The lack of conversion from byte[] to String causes the incorrect construction of the Authorization header when basic authentication is used.

Unable to access neo4j 2.01 version db

I'm running Gephi 0.8.2-Beta together with the "Neo4j Graph Database support" plugin updated on March 3, 2014. I've used the BatchImporter to generate a neo4j-database but when I tried to open it from Gephi, I get an org.neo4j.graphdb.NotInTransactionException. The generated db opens up without any problems in neo4j and can be browsed from the web-admin.

I also tried to open the sample test database created by the 2.01 installer and get exactly the same exception.

Is this a known problem or have I missed something here?

Can't package Gython Wrapper

While packaging Gython Wrapper as nbm, the process just hangs up.
This is making it impossible to package the whole plugin suite.

Edit: I wasn't able to package it under Windows and Linux.

export vs exportGraph

Hello,

I am trying to use the scripting pluging --- it looks great, however I think the documentation may be out of date.

I tried to call export as indicated in the exporting section of this doc https://wiki.gephi.org/index.php/Scripting_Plugin , and got name not found error.

However, I found the issue tracker, and noticed someone discussing the "exportGraph" function, which I tried and worked! :)

I'm wondering if there is a more up to date doc of the functions that are in scope within the scripting console.

Alternatively I am wondering where the source code for the plugin is so I can find the functions I need to call myself (i was having trouble finding the relevant code within here https://github.com/gephi/gephi-plugins/tree/python-scripting-plugin)

Best and thank you for any help.

Max

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.