Move maven dependency junit:junit:3.8.2 from scope 'compile' to scope 'test'
----------------------------------------------------------------------------
Key: WW-3528
URL: https://issues.apache.org/jira/browse/WW-3528
Project: Struts 2
Issue Type: Improvement
Components: Plugin - Convention
Environment: All
Reporter: rrrrutdk
org.apache.struts:struts2-plugins:pom
adds
junit:junit:3.8.2
as a test dependency, but declared the dependency in scope 'compile'.
all my projects using or referencing struts2-plugins.pom have to exclude the annoying test
dependency like this:
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
i had been troubled by this issue since struts2 2.0.x.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|