{"id":17004868,"url":"https://github.com/clickermonkey/dependz","last_synced_at":"2025-10-30T10:07:51.777Z","repository":{"id":13261276,"uuid":"15946460","full_name":"ClickerMonkey/Dependz","owner":"ClickerMonkey","description":"A dependency analysis utility in Java which uses topological sorting to order values based on their dependencies.","archived":false,"fork":false,"pushed_at":"2014-01-24T12:30:40.000Z","size":252,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-27T10:23:14.531Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"osl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ClickerMonkey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-15T19:59:10.000Z","updated_at":"2014-01-24T12:30:41.000Z","dependencies_parsed_at":"2022-09-02T18:53:09.328Z","dependency_job_id":null,"html_url":"https://github.com/ClickerMonkey/Dependz","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClickerMonkey%2FDependz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClickerMonkey%2FDependz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClickerMonkey%2FDependz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ClickerMonkey%2FDependz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ClickerMonkey","download_url":"https://codeload.github.com/ClickerMonkey/Dependz/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244945597,"owners_count":20536295,"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":[],"created_at":"2024-10-14T04:44:38.960Z","updated_at":"2025-10-30T10:07:46.754Z","avatar_url":"https://github.com/ClickerMonkey.png","language":"Java","readme":"Dependz\n=======\n\n![Stable](http://i4.photobucket.com/albums/y123/Freaklotr4/stage_stable.png)\n\nA dependency analysis utility in Java which uses topological sorting to order values based on their dependencies.\n\nThere are two methods to build a DependencyGraph, one with DependencyNodes (which requires all DependencyNode references to be created ahead of time) or by using DependencyMap which can use an arbitrary key to map dependencies between values.\n\n#### Example\n\n```java\nDependencyMap\u003cString, Integer\u003e map = new DependencyMap\u003cString, Integer\u003e();\nmap.put( \"value0\", 0 );\nmap.put( \"value1\", 1 );\nmap.put( \"value2\", 2 );\nmap.put( \"value3\", 3 );\nmap.put( \"value4\", 4 );\nmap.addDependency( \"value0\", \"value1\" ); // value0 depends on value1\nmap.addDependency( \"value2\", \"value0\" ); \nmap.addDependency( \"value1\", \"value3\" );\nmap.addDependency( \"value1\", \"value4\" );\n        \nDependencyAnalyzer\u003cInteger\u003e analyzer = map.toAnalyzer();\n\nassertTrue( analyzer.isValid() );\nassertEquals( Arrays.asList( 3, 4, 1, 0, 2 ), graph.getOrdered() );\n```\n\n#### Builds\n- [dependz-1.0.jar](https://github.com/ClickerMonkey/Dependz/raw/master/build/dependz-1.0.jar)\n- [dependz-src-1.0.jar](https://github.com/ClickerMonkey/Dependz/raw/master/build/dependz-1.0-src.jar) - includes source code\n\n#### Projects using Dependz\n\n- [Rekord](https://github.com/ClickerMonkey/Rekord)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclickermonkey%2Fdependz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclickermonkey%2Fdependz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclickermonkey%2Fdependz/lists"}