Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.9.2
-
Fix Version/s: 0.9.7
-
Component/s: None
-
Labels:None
-
Environment:Eclipse 3.3.*
-
Number of attachments :
Description
When adding a dependency, whatever the artefact type chosen from the repository, it is added whithout the type:
<dependency>
<groupId>a.b.c</groupId>
<artifactId>myArtefact</artifactId>
<version>x.y.z</version>
</dependency>
this is a pain, because, if you chose a pom, then a maven build, or the dependency resolver wont find it.
Therefore the type should be explicitely set from what the indexer can find in the repository (pom, jar, ejb, war, etc. )
<dependency>
<groupId>a.b.c</groupId>
<artifactId>myArtefact</artifactId>
<version>x.y.z</version>
<type>pom,ejb,war, ... or jar ...</type>
</dependency>
Christian-Luc
Attachments
Issue Links
| This issue is duplicated by: | ||||
| MNGECLIPSE-594 | Add non jar dependency |
|
|
|
| This issue is depended upon by: | ||||
| MNGECLIPSE-598 | Integration with Flex 3.0 via the flex-mojos provided by VELO |
|
|
|
Christian-Luc, can you please create test projects with "pom,ejb,war, or jar" type and then another one that uses those. It would help use to investigate and provide solution for this. Thanks.