Hello Maven Team!
I don't know if this has been already discussed...
I think that it will be cool if List of Dependencies (LOD) could be
logically decoupled from repository.
It means that artifacts could be "retrieved" not only from repository but
also from other places and added/deleted dynamically to/from LOD.
Example
In project.xml:
....
<dependencies>
<dependency>
<id>dep1</id>
<version>1.0.0</version>
<type>static<type> //this one will be taken from repository
</dependency>
<dependency>
<id>mywar</id>
<type>dynamic<type> //this one will be delivered by one of the goals
(e.g. war:war) and not necessarily installed in repository
// only when it visible in the LOD it will be used
by goals. Some goal may delete it from the list
<properties>
<maven.ear.bundle>true</maven.ear.bundle>
<properties>
</dependency>
</dependencies>
...
Maybe I miss something and there are already good ways of making it?
Michal
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>