Package Summary
Tags | No category tags. |
Version | 0.2.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_tools.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-03 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Yutaka Kondo
Authors
- Vincent Richard
- Masaki Baba
autoware_dependency_checker
This package provides a script for checking whether each package’s dependencies listed in a package.xml are used or not.
Currently, it mainly checks packages that start with autoware_
.
Dependency Checking
The script will try to match the dependencies and the headers by reading the dependencies listed in package.xml and the included headers in the source files.
Some dependency in package.xml
and the included header might differ.
The following table shows the matching between dependency names and headers:
from | to | description |
---|---|---|
autoware_pkg_name | autoware/pkg_name | Usually this style should be used |
autoware_*_msgs | autoware_*_msgs | For messages |
autoware_other_pkg | autoware_other_pkg | E.g. autoware_lanelet2_extension |
Usage
# build
$ cd to/autoware_tools
$ colcon build --symlink-install --cmake-args --packages-up-to autoware_dependency_checker
$ source
# run
$ cd to/your/autoware
$ ros2 run autoware_dependency_checker dependency_checker.sh
# run in some package
$ cd to/some/package
$ ros2 run autoware_dependency_checker dependency_checker.sh
Changelog for package autoware_dependency_checker
0.2.0 (2025-03-24)
0.1.0 (2025-01-28)
- unify version to 0.0.0
- feat(dependency_checker): add dependency checker script
(#89)
- add dependency_checker
- fix
- style(pre-commit): autofix
- fix bag
- apply markdownlint
* fix typo Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>> fix typo Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
- add dep ament_cmake
- fix based on shellcheck
- fix words
* add cspell ignore ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]\@users.noreply.github.com> Co-authored-by: Yutaka Kondo <<yutaka.kondo@youtalk.jp>>
- Contributors: Masaki Baba, Yutaka Kondo