javamail has wrong dependency on activation
-------------------------------------------
Key: MEV-79
URL: http://jira.codehaus.org/browse/MEV-79
Project: Maven Evangelism
Type: Bug
Components: Dependencies
Reporter: Christoph Sturm
both
http://www.ibiblio.org/maven2/javamail/javamail/1.3.2/javamail-1.3.2.pom
http://www.ibiblio.org/maven2/javamail/javamail/1.3.1/javamail-1.3.1.pom
declare
<dependencies>
<dependency>
<groupId>jaf</groupId>
<artifactId>activation</artifactId>
<version>1.0.2</version>
<scope>runtime</scope>
</dependency>
</dependencies>
this should be
<dependencies>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.0.2</version>
<scope>runtime</scope>
</dependency>
</dependencies>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]