Jar from another project module is not included in modl file

In my IntelliJ project, I have two modules. I’ll call them Project Modules to distinguish them from the Ignition module that is the subject of this topic.

Project Module CommonLib generates a jar file.

Project Module ItemQualityLog generates an Ignition module file. ItemQualityLog is dependent on CommonLib. The dependency is declared in the pom file for ItemQualityLog.

The Maven package command executes without error. (Using v1.0.5 of the Ignition Maven Plugin.)
But the jar for CommonLib is not in the modl file. (It is in the CommonLib target folder.)

How do I instruct the Ignition Maven Plugin to include CommonLib.jar in the ItemQualityLog modl file?

Solved the problem by adding CommonLib as a .

                <projectScopes>
                    <projectScope>
                        <name>CommonLib</name>
                        <scope>G</scope>
                    </projectScope>
                    <projectScope>
                        <name>ItemQualityLog</name>
                        <scope>G</scope>
                    </projectScope>
                </projectScopes>