You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Barry Kaplan (JIRA)" <ji...@codehaus.org> on 2005/11/18 02:33:06 UTC

[jira] Created: (MNG-1606) Allow for forcing the creation of direct project references for dependencies

Allow for forcing the creation of direct project references for dependencies
----------------------------------------------------------------------------

         Key: MNG-1606
         URL: http://jira.codehaus.org/browse/MNG-1606
     Project: Maven 2
        Type: New Feature
  Components: maven-eclipse-plugin  
    Versions: 2.0    
    Reporter: Barry Kaplan


For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:

   <dependency>
        <groupId>backport-util-concurrent</groupId>
        <artifactId>backport-util-concurrent</artifactId>
        <version>2.0_01_pd</version>
        <scope>runtime</scope>
        <properties>
            <property name="eclipse.dependencyType" value="XXXX"/>
        </properties>
    </dependency>

Where XXXX can be: 
 - 'project' -- always create a project reference
 -  'jar' -- always create a jar reference as in MNG-955
 - 'auto' -- the behavior prior to MNG-955


-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1606) Allow for forcing the creation of direct project references for dependencies

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1606?page=comments#action_51495 ] 

Brett Porter commented on MNG-1606:
-----------------------------------

they are used in the assembly plugin. This is just a standard technique for managing dependencies.

> Allow for forcing the creation of direct project references for dependencies
> ----------------------------------------------------------------------------
>
>          Key: MNG-1606
>          URL: http://jira.codehaus.org/browse/MNG-1606
>      Project: Maven 2
>         Type: New Feature
>   Components: maven-eclipse-plugin
>     Versions: 2.0
>     Reporter: Barry Kaplan

>
>
> For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:
>    <dependency>
>         <groupId>backport-util-concurrent</groupId>
>         <artifactId>backport-util-concurrent</artifactId>
>         <version>2.0_01_pd</version>
>         <scope>runtime</scope>
>         <properties>
>             <property name="eclipse.dependencyType" value="XXXX"/>
>         </properties>
>     </dependency>
> Where XXXX can be: 
>  - 'project' -- always create a project reference
>  -  'jar' -- always create a jar reference as in MNG-955
>  - 'auto' -- the behavior prior to MNG-955

-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1606) Allow for forcing the creation of direct project references for dependencies

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1606?page=comments#action_51483 ] 

Brett Porter commented on MNG-1606:
-----------------------------------

this should not be done via dependency properites but instead by a configuration filter, if implemented

> Allow for forcing the creation of direct project references for dependencies
> ----------------------------------------------------------------------------
>
>          Key: MNG-1606
>          URL: http://jira.codehaus.org/browse/MNG-1606
>      Project: Maven 2
>         Type: New Feature
>   Components: maven-eclipse-plugin
>     Versions: 2.0
>     Reporter: Barry Kaplan

>
>
> For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:
>    <dependency>
>         <groupId>backport-util-concurrent</groupId>
>         <artifactId>backport-util-concurrent</artifactId>
>         <version>2.0_01_pd</version>
>         <scope>runtime</scope>
>         <properties>
>             <property name="eclipse.dependencyType" value="XXXX"/>
>         </properties>
>     </dependency>
> Where XXXX can be: 
>  - 'project' -- always create a project reference
>  -  'jar' -- always create a jar reference as in MNG-955
>  - 'auto' -- the behavior prior to MNG-955

-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1606) Allow for forcing the creation of direct project references for dependencies

Posted by "Barry Kaplan (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1606?page=comments#action_51494 ] 

Barry Kaplan commented on MNG-1606:
-----------------------------------

Sorry Brett, I'm not following what the meaning of this snippet is. Are configuration filters implemented anywhere? Are there some concrete examples I can study? tx

> Allow for forcing the creation of direct project references for dependencies
> ----------------------------------------------------------------------------
>
>          Key: MNG-1606
>          URL: http://jira.codehaus.org/browse/MNG-1606
>      Project: Maven 2
>         Type: New Feature
>   Components: maven-eclipse-plugin
>     Versions: 2.0
>     Reporter: Barry Kaplan

>
>
> For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:
>    <dependency>
>         <groupId>backport-util-concurrent</groupId>
>         <artifactId>backport-util-concurrent</artifactId>
>         <version>2.0_01_pd</version>
>         <scope>runtime</scope>
>         <properties>
>             <property name="eclipse.dependencyType" value="XXXX"/>
>         </properties>
>     </dependency>
> Where XXXX can be: 
>  - 'project' -- always create a project reference
>  -  'jar' -- always create a jar reference as in MNG-955
>  - 'auto' -- the behavior prior to MNG-955

-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1606) Allow for forcing the creation of direct project references for dependencies

Posted by "Barry Kaplan (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1606?page=comments#action_51490 ] 

Barry Kaplan commented on MNG-1606:
-----------------------------------

What is a configuration filter? I  don't see this in the docs. And how does using a configuration filter relate to MNG-955? Should that also have been implemented with a configuration filter?

> Allow for forcing the creation of direct project references for dependencies
> ----------------------------------------------------------------------------
>
>          Key: MNG-1606
>          URL: http://jira.codehaus.org/browse/MNG-1606
>      Project: Maven 2
>         Type: New Feature
>   Components: maven-eclipse-plugin
>     Versions: 2.0
>     Reporter: Barry Kaplan

>
>
> For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:
>    <dependency>
>         <groupId>backport-util-concurrent</groupId>
>         <artifactId>backport-util-concurrent</artifactId>
>         <version>2.0_01_pd</version>
>         <scope>runtime</scope>
>         <properties>
>             <property name="eclipse.dependencyType" value="XXXX"/>
>         </properties>
>     </dependency>
> Where XXXX can be: 
>  - 'project' -- always create a project reference
>  -  'jar' -- always create a jar reference as in MNG-955
>  - 'auto' -- the behavior prior to MNG-955

-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1606) Allow for forcing the creation of direct project references for dependencies

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1606?page=comments#action_51493 ] 

Brett Porter commented on MNG-1606:
-----------------------------------

configuration filter is for per dependencies settings, eg in the eclipse plugin, something like:

<configuration>
  <references>
    <reference>backport-util-concurrent:backport-util-concurrent</reference>
  </references>
</configuration>



> Allow for forcing the creation of direct project references for dependencies
> ----------------------------------------------------------------------------
>
>          Key: MNG-1606
>          URL: http://jira.codehaus.org/browse/MNG-1606
>      Project: Maven 2
>         Type: New Feature
>   Components: maven-eclipse-plugin
>     Versions: 2.0
>     Reporter: Barry Kaplan

>
>
> For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:
>    <dependency>
>         <groupId>backport-util-concurrent</groupId>
>         <artifactId>backport-util-concurrent</artifactId>
>         <version>2.0_01_pd</version>
>         <scope>runtime</scope>
>         <properties>
>             <property name="eclipse.dependencyType" value="XXXX"/>
>         </properties>
>     </dependency>
> Where XXXX can be: 
>  - 'project' -- always create a project reference
>  -  'jar' -- always create a jar reference as in MNG-955
>  - 'auto' -- the behavior prior to MNG-955

-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MECLIPSE-32) Allow for forcing the creation of direct project references for dependencies

Posted by "fabrizio giustina (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MECLIPSE-32?page=all ]

fabrizio giustina updated MECLIPSE-32:
--------------------------------------

    Version: 2.0

> Allow for forcing the creation of direct project references for dependencies
> ----------------------------------------------------------------------------
>
>          Key: MECLIPSE-32
>          URL: http://jira.codehaus.org/browse/MECLIPSE-32
>      Project: Maven 2.x Eclipse Plugin
>         Type: Bug

>     Versions: 2.0
>     Reporter: Barry Kaplan

>
>
> For some thirdparty dependencies, it is common (for me at least) that an eclipse project for that dependency does/will exist in the workspace. It would be nice if dependencies in eclipse projects can be forced to use a direct project reference.  eg:
>    <dependency>
>         <groupId>backport-util-concurrent</groupId>
>         <artifactId>backport-util-concurrent</artifactId>
>         <version>2.0_01_pd</version>
>         <scope>runtime</scope>
>         <properties>
>             <property name="eclipse.dependencyType" value="XXXX"/>
>         </properties>
>     </dependency>
> Where XXXX can be: 
>  - 'project' -- always create a project reference
>  -  'jar' -- always create a jar reference as in MNG-955
>  - 'auto' -- the behavior prior to MNG-955

-- 
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: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org