You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
Please provide an index for which Java classes are in which Maven artifacts. For example, I was trying to compile some code that used org.ros.message.MessageListener, and I assumed it would be part of org.ros.rosjava_core:rosjava, but it was actually part of org.ros.rosjava_bootstrap:message_generation. I had to do the following to figure that out, which is a bit of a pain:
for i in `find ~/.m2/repository/org/ros | grep '.*\.jar$'` ; do echo $i ; unzip -l $i | grep MessageListener ; done
The text was updated successfully, but these errors were encountered:
The index could be in README.md, or if the classes are unlikely to change packages, you could include the relevant groupId and artifactId in the JavaDoc for each class.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Please provide an index for which Java classes are in which Maven artifacts. For example, I was trying to compile some code that used
org.ros.message.MessageListener
, and I assumed it would be part oforg.ros.rosjava_core:rosjava
, but it was actually part oforg.ros.rosjava_bootstrap:message_generation
. I had to do the following to figure that out, which is a bit of a pain:The text was updated successfully, but these errors were encountered: