Maven POM: JUnit should have only scope "test"
----------------------------------------------
Key: HTTPCLIENT-811
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-811
Project: HttpComponents HttpClient
Issue Type: Bug
Components: Contrib
Environment: Maven2
commons-httpclient 3.0.1
Default Maven Repository
Reporter: Fegote
The pom file defines JUNIT as provided:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
But it should be only has test scope:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]