{"id":13892635,"url":"https://github.com/gephi/gephi-toolkit","last_synced_at":"2025-04-05T01:08:35.772Z","repository":{"id":4921227,"uuid":"6077687","full_name":"gephi/gephi-toolkit","owner":"gephi","description":"Gephi Toolkit - All Gephi in a Library","archived":false,"fork":false,"pushed_at":"2024-08-25T18:31:57.000Z","size":150,"stargazers_count":172,"open_issues_count":7,"forks_count":117,"subscribers_count":25,"default_branch":"master","last_synced_at":"2024-10-30T04:29:52.051Z","etag":null,"topics":["graph","java","network-visualization"],"latest_commit_sha":null,"homepage":"https://gephi.org/toolkit","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"andrewhao/jammit","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gephi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-10-04T15:44:35.000Z","updated_at":"2024-09-05T21:48:02.000Z","dependencies_parsed_at":"2024-11-08T09:34:21.535Z","dependency_job_id":null,"html_url":"https://github.com/gephi/gephi-toolkit","commit_stats":{"total_commits":91,"total_committers":8,"mean_commits":11.375,"dds":"0.25274725274725274","last_synced_commit":"d03859cb5b03e8853c6e01130413e7b528e56cd0"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gephi%2Fgephi-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gephi%2Fgephi-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gephi%2Fgephi-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gephi%2Fgephi-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gephi","download_url":"https://codeload.github.com/gephi/gephi-toolkit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247271532,"owners_count":20911587,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["graph","java","network-visualization"],"created_at":"2024-08-06T17:01:07.398Z","updated_at":"2025-04-05T01:08:35.744Z","avatar_url":"https://github.com/gephi.png","language":"Java","readme":"# Gephi Toolkit - All Gephi in one library\n[![build](https://github.com/gephi/gephi-toolkit/actions/workflows/ci.yml/badge.svg)](https://github.com/gephi/gephi-toolkit/actions/workflows/ci.yml)\n[![javadoc](https://javadoc.io/badge2/org.gephi/gephi-toolkit/javadoc.svg)](https://javadoc.io/doc/org.gephi/gephi-toolkit)\n\nThe [Gephi](http://gephi.org) Toolkit project packages essential Gephi modules (Graph, Layout, Filters, IO…) in a standard Java library. It can be used on a server or command-line tool to do the same things Gephi does, but programmatically.\n\nIt follows the same versioning as Gephi. A new version of the toolkit is released when a new version of Gephi is released.\n\n## Use the toolkit\n\nBest way to start is through examples on [Toolkit Demos](https://github.com/gephi/gephi-toolkit-demos). It shows examples how to use the toolkit. If you need support, the community can help you on [Discussions](https://github.com/gephi/gephi-toolkit/discussions/categories/q-a).\n\n- [Gephi Toolkit Tutorial](http://www.slideshare.net/gephi/gephi-toolkit-tutorialtoolkit)\n\n- [Code examples](https://github.com/gephi/gephi-toolkit-demos)\n\n- [Javadoc](https://www.javadoc.io/doc/org.gephi/gephi-toolkit/latest/index.html)\n\n#### From a Maven project\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.gephi\u003c/groupId\u003e\n    \u003cartifactId\u003egephi-toolkit\u003c/artifactId\u003e\n    \u003cversion\u003e0.10.1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n#### From a Gradle project\n\n```\ncompile 'org.gephi:gephi-toolkit:0.10.1'\n```\n\n#### From a Scala SBT Project\n\n```\nresolvers ++= Seq(\n  \"gephi-thirdparty\" at \"https://raw.github.com/gephi/gephi/mvn-thirdparty-repo/\"\n)\n\nlibraryDependencies += \"org.gephi\" % \"gephi-toolkit\" % \"0.10.1\" classifier \"all\"\n```\n\n## Latest releases\n\n### Stable\n\n- Latest stable release on [gephi.org](http://gephi.org/toolkit).\n\n### Development Build\n\n- [gephi-toolkit-0.10.2-SNAPSHOT-all.jar](https://oss.sonatype.org/service/local/artifact/maven/content?r=snapshots\u0026g=org.gephi\u0026a=gephi-toolkit\u0026v=0.10-2-SNAPSHOT\u0026c=all)\n\n### Development Build (Maven)\n\nIf you use Maven you can directly depend on the latest development version of the toolkit (i.e the -SNAPSHOT version).\n\n- Add the Gephi repository\n\n```xml\n\u003cproject\u003e\n...\n   \u003crepositories\u003e\n      \u003crepository\u003e\n         \u003cid\u003eoss-sonatype\u003c/id\u003e\n         \u003cname\u003eoss-sonatype\u003c/name\u003e\n         \u003curl\u003ehttps://oss.sonatype.org/content/repositories/snapshots/\u003c/url\u003e\n         \u003csnapshots\u003e\n            \u003cenabled\u003etrue\u003c/enabled\u003e\n         \u003c/snapshots\u003e\n      \u003c/repository\u003e\n   \u003c/repositories\u003e\n...\n\u003c/project\u003e\n```\n\n- Add the dependency\n\n```xml\n\u003cproject\u003e\n...\n   \u003cdependencies\u003e\n      \u003cdependency\u003e\n         \u003cgroupId\u003eorg.gephi\u003c/groupId\u003e\n         \u003cartifactId\u003egephi-toolkit\u003c/artifactId\u003e\n         \u003cversion\u003e0.10.2-SNAPSHOT\u003c/version\u003e\n      \u003c/dependency\u003e\n      ...\n   \u003c/dependencies\u003e\n...\n\u003c/project\u003e\n```\n\n## Build\n\nThe Gephi Toolkit is entirely based on Gephi's source code and packages the core modules in a single JAR. \n\nIt sources its Gephi dependencies from [Maven Central](https://central.sonatype.com/namespace/org.gephi).\n\n### Requirements\n\n- Java JDK 11.\n\n- [Apache Maven](http://maven.apache.org/) version 3.6.3 or later\n\n### Checkout and Build the sources\n\n- Fork the repository and clone\n\n        git clone git@github.com:username/gephi-toolkit.git\n\n- Run the following command or open the project in an IDE like NetBeans or IntelliJ IDEA\n\n        mvn clean install\n\n### Can the Toolkit use plugins?\n\nYes that is possible if the plug-in doesn’t depend on something not included in the Toolkit, for instance the UI. If that happens, it is likely that the plug-in has been divided in several modules, and in that case one need only the core and can exclude the UI.\nConsult this [HowTo](https://github.com/gephi/gephi/wiki/How-to-use-plug-ins-with-the-Toolkit) page to know how to extract the plugin JARs from the NBM file. Once you have the JARs, include them in your project’s classpath, in addition of the Gephi Toolkit.\n\n### Can it depends on a development version of Gephi?\n\nYes, either a snapshot or a locally built version.\n\nTo build it based on your own locally-built Gephi do the following:\n\n- Build Gephi from its own repository normally (`mvn clean install`)\n- This should have installed or overwritten all modules artefacts within your local Maven directory, usually `$USERHOME/.m2`\n- Rebuild the toolkit, making sure to depend on the Gephi's version you just built\n\n## License\n\nGephi's source code is distributed under the dual license [CDDL 1.0](http://www.opensource.org/licenses/CDDL-1.0) and [GNU General Public License v3](http://www.gnu.org/licenses/gpl.html). Read the [Legal FAQs](https://gephi.org/legal/faq/)  to learn more.\n","funding_links":[],"categories":["Others"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgephi%2Fgephi-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgephi%2Fgephi-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgephi%2Fgephi-toolkit/lists"}