https://github.com/sloppycoder/maven-project-scanner
https://github.com/sloppycoder/maven-project-scanner
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloppycoder/maven-project-scanner
- Owner: sloppycoder
- Created: 2023-08-18T04:46:39.000Z (almost 3 years ago)
- Default Branch: develop
- Last Pushed: 2024-03-18T15:50:38.000Z (about 2 years ago)
- Last Synced: 2025-01-11T08:14:01.380Z (over 1 year ago)
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maven scanner
Identify Maven projects from local mirrors and build each project. Collect sonar stats and jqassistant scan after builing each project.
## jqassistnt
To check if there Spring related results are collected (during analyze phase), run the following command
the current version (2.0.0) of spring plugin does not work well with neo4j 5.x. No errors are shown but no Spring objects are identified during the analysis run. Use neo4j 4.x instead.
```shell
cypher-shell -a localhost -u neo4j -p password \
"MATCH (n:Spring) RETURN labels(n) as NodeLabels, COUNT(*) as Count ORDER BY NodeLabels;"
```