Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soup-o-stat/mavengraphviz
cmd tool for visualizing a dependency graph (defined by the name of the Java language package (Maven))
https://github.com/soup-o-stat/mavengraphviz
cmd java maven maven-pom mirea python tools
Last synced: 5 days ago
JSON representation
cmd tool for visualizing a dependency graph (defined by the name of the Java language package (Maven))
- Host: GitHub
- URL: https://github.com/soup-o-stat/mavengraphviz
- Owner: Soup-o-Stat
- Created: 2024-10-20T15:52:28.000Z (18 days ago)
- Default Branch: main
- Last Pushed: 2024-10-27T09:36:42.000Z (11 days ago)
- Last Synced: 2024-10-28T12:12:04.248Z (10 days ago)
- Topics: cmd, java, maven, maven-pom, mirea, python, tools
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MavenGraphViz
## What is it?
MavenGraphViz is a cmd tool for visualizing a dependency graph. Dependencies are defined by the name of the Java language package (Maven). The Mermaid representation is used to describe the dependency graph. The visualizer displays the result on the screen in the form of a code.## Flags
**cmd flags are set:**
- The path to the graph visualization program.
- The name of the package being analyzed.
- The path to the result file in the form of a code.
- URL of the repository## Example
```
python mavengraphviz.py junit:junit:4.12 output_file.mmd https://repo1.maven.org/maven2
```## Downloading Python packages
You will most likely need to install libraries such as [requests](https://pypi.org/project/requests/) and [termcolor](https://pypi.org/project/termcolor/)```
pip install requests
```
```
pip install termcolor
```## If you don't have pip installed
If you don't have pip installed, follow the steps below:**Download PIP get-pip.py**
```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
```
**Installing PIP on Windows**
```
python get-pip.py
```
**Verify Installation**
```
python -m pip help
```For more information visit this [site](https://phoenixnap.com/kb/install-pip-windows)