Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fwcd/deplocator
Tool that finds Maven dependencies by analyzing Java imports
https://github.com/fwcd/deplocator
dependency-finder maven
Last synced: about 1 month ago
JSON representation
Tool that finds Maven dependencies by analyzing Java imports
- Host: GitHub
- URL: https://github.com/fwcd/deplocator
- Owner: fwcd
- License: mit
- Created: 2019-09-10T11:02:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-02T16:33:00.000Z (about 4 years ago)
- Last Synced: 2024-12-13T22:42:07.540Z (about 1 month ago)
- Topics: dependency-finder, maven
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deplocator
A small tool that finds the Maven dependencies for a given set of Java source files by analyzing its import declarations.## Running
`python3 -m deplocator [project folder] [project package prefix]`For example, if you have a repository called `myapp` in the parent directory with classes being located under `com.myapp`, you can use:
`python3 -m deplocator ../myapp com.myapp`