overturetool / overture

The Overture Tool
http://overturetool.org
GNU General Public License v3.0
49 stars 25 forks source link

The codegen runtime plugin includes a test dependency #782

Closed lausdahl closed 3 years ago

lausdahl commented 3 years ago

The codegen-runtime jar by mistake includes a test dependency. The scope test is missing. This is a problem for all that depends on this plugin as the whole junit 4.11 dependency chain is included.

the fix is to add <scope>test</scope>

or where the dependency is added:


                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>```