Skip to content
This repository was archived by the owner on Jan 14, 2023. It is now read-only.
This repository was archived by the owner on Jan 14, 2023. It is now read-only.

hydro message dependencies muddled with indigo #48

Open
@stonier

Description

@stonier

Hydro uses this function from the catkin plugin:

generateMessageArtifact()
....
        messageDependencies.each { d ->
             if ( p.getParent().getChildProjects().containsKey(d) ) {
                 /* println("  Internal: " + d) */
                 p.dependencies.add("compile", p.dependencies.project(path: ':' + d))
             } else {
                 /* println("  External: " + d) */
                 p.dependencies.add("compile", 'org.ros.rosjava_messages:' + d + ':[0.0,)')
             }
         }

Obviously, the open ended dependency is now bad as it will drag indigo released messages into the build.

Indigo doesn't have this problem as it generates exact version dependencies from one message package to another.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions