You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Jesse McConnell (JIRA)" <ji...@codehaus.org> on 2005/08/11 22:29:57 UTC

[jira] Created: (MNG-725) pom dependencies not added to compile Classpath

pom dependencies not added to compile Classpath
-----------------------------------------------

         Key: MNG-725
         URL: http://jira.codehaus.org/browse/MNG-725
     Project: Maven 2
        Type: Bug
 Reporter: Jesse McConnell


I am trying to use a meta dependency pom file to lump several dependencies together into one unit.

on the webserver I have 

<project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>meta-dependency</groupId>
   <artifactId>oracle</artifactId>
   <packaging>pom</packaging>
   <version>1.0</version>
   <name>oracle meta dependencies list</name>
   <dependencies>
      <dependency>
         <groupId>oracle</groupId>
         <artifactId>oracle</artifactId>
         <version>9201</version>
         <scope>provided</scope>
      </dependency>
      <dependency>
         <groupId>oracle</groupId>
         <artifactId>oracle_nls_charset</artifactId>
         <version>9201.12</version>
         <scope>provided</scope>
      </dependency>
   </dependencies>
</project>

in the local pom I have:

      <dependency>
         <groupId>meta-dependency</groupId>
         <artifactId>oracle</artifactId>
         <version>1.0</version>
         <type>pom</type>
      </dependency>

Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.

[DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
[DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
[DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)

that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.

I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.



-- 
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-725) pom dependencies not added to compile Classpath

Posted by "Jesse McConnell (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-725?page=comments#action_44332 ] 

Jesse McConnell commented on MNG-725:
-------------------------------------

was trying to put together and it0050 test for this but realized I needed to have some pom resource on a webserver...not sure how to make it happen otherwise.

> pom dependencies not added to compile Classpath
> -----------------------------------------------
>
>          Key: MNG-725
>          URL: http://jira.codehaus.org/browse/MNG-725
>      Project: Maven 2
>         Type: Bug
>     Reporter: Jesse McConnell

>
>
> I am trying to use a meta dependency pom file to lump several dependencies together into one unit.
> on the webserver I have 
> <project>
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>meta-dependency</groupId>
>    <artifactId>oracle</artifactId>
>    <packaging>pom</packaging>
>    <version>1.0</version>
>    <name>oracle meta dependencies list</name>
>    <dependencies>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle</artifactId>
>          <version>9201</version>
>          <scope>provided</scope>
>       </dependency>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle_nls_charset</artifactId>
>          <version>9201.12</version>
>          <scope>provided</scope>
>       </dependency>
>    </dependencies>
> </project>
> in the local pom I have:
>       <dependency>
>          <groupId>meta-dependency</groupId>
>          <artifactId>oracle</artifactId>
>          <version>1.0</version>
>          <type>pom</type>
>       </dependency>
> Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.
> [DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
> [DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
> [DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)
> that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.
> I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.

-- 
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: (MNG-725) pom dependencies not added to compile Classpath

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

Brett Porter updated MNG-725:
-----------------------------

    Component: maven-artifact

> pom dependencies not added to compile Classpath
> -----------------------------------------------
>
>          Key: MNG-725
>          URL: http://jira.codehaus.org/browse/MNG-725
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Jesse McConnell
>     Assignee: Brett Porter
>      Fix For: 2.0-beta-2

>
> Original Estimate: 1 hour
>         Remaining: 1 hour
>
> I am trying to use a meta dependency pom file to lump several dependencies together into one unit.
> on the webserver I have 
> <project>
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>meta-dependency</groupId>
>    <artifactId>oracle</artifactId>
>    <packaging>pom</packaging>
>    <version>1.0</version>
>    <name>oracle meta dependencies list</name>
>    <dependencies>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle</artifactId>
>          <version>9201</version>
>          <scope>provided</scope>
>       </dependency>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle_nls_charset</artifactId>
>          <version>9201.12</version>
>          <scope>provided</scope>
>       </dependency>
>    </dependencies>
> </project>
> in the local pom I have:
>       <dependency>
>          <groupId>meta-dependency</groupId>
>          <artifactId>oracle</artifactId>
>          <version>1.0</version>
>          <type>pom</type>
>       </dependency>
> Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.
> [DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
> [DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
> [DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)
> that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.
> I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.

-- 
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] Closed: (MNG-725) pom dependencies not added to compile Classpath

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-725?page=all ]
     
Brett Porter closed MNG-725:
----------------------------

     Resolution: Won't Fix
    Fix Version:     (was: 2.0-beta-3)

this is simply because provided dependencies aren't transitive. it works otherwise I believe.

I also disagreed with implying type from packaging in a different issue (in case anyone is wondering).


> pom dependencies not added to compile Classpath
> -----------------------------------------------
>
>          Key: MNG-725
>          URL: http://jira.codehaus.org/browse/MNG-725
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Jesse McConnell
>     Assignee: Brett Porter

>
>
> I am trying to use a meta dependency pom file to lump several dependencies together into one unit.
> on the webserver I have 
> <project>
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>meta-dependency</groupId>
>    <artifactId>oracle</artifactId>
>    <packaging>pom</packaging>
>    <version>1.0</version>
>    <name>oracle meta dependencies list</name>
>    <dependencies>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle</artifactId>
>          <version>9201</version>
>          <scope>provided</scope>
>       </dependency>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle_nls_charset</artifactId>
>          <version>9201.12</version>
>          <scope>provided</scope>
>       </dependency>
>    </dependencies>
> </project>
> in the local pom I have:
>       <dependency>
>          <groupId>meta-dependency</groupId>
>          <artifactId>oracle</artifactId>
>          <version>1.0</version>
>          <type>pom</type>
>       </dependency>
> Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.
> [DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
> [DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
> [DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)
> that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.
> I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.

-- 
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: (MNG-725) pom dependencies not added to compile Classpath

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

Brett Porter updated MNG-725:
-----------------------------

    Remaining Estimate:     (was: 1 hour)
     Original Estimate:     (was: 3600)

> pom dependencies not added to compile Classpath
> -----------------------------------------------
>
>          Key: MNG-725
>          URL: http://jira.codehaus.org/browse/MNG-725
>      Project: Maven 2
>         Type: Bug
>   Components: maven-artifact
>     Reporter: Jesse McConnell
>     Assignee: Brett Porter

>
>
> I am trying to use a meta dependency pom file to lump several dependencies together into one unit.
> on the webserver I have 
> <project>
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>meta-dependency</groupId>
>    <artifactId>oracle</artifactId>
>    <packaging>pom</packaging>
>    <version>1.0</version>
>    <name>oracle meta dependencies list</name>
>    <dependencies>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle</artifactId>
>          <version>9201</version>
>          <scope>provided</scope>
>       </dependency>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle_nls_charset</artifactId>
>          <version>9201.12</version>
>          <scope>provided</scope>
>       </dependency>
>    </dependencies>
> </project>
> in the local pom I have:
>       <dependency>
>          <groupId>meta-dependency</groupId>
>          <artifactId>oracle</artifactId>
>          <version>1.0</version>
>          <type>pom</type>
>       </dependency>
> Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.
> [DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
> [DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
> [DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)
> that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.
> I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.

-- 
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: (MNG-725) pom dependencies not added to compile Classpath

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

Brett Porter updated MNG-725:
-----------------------------

    Fix Version: 2.0-beta-2

> pom dependencies not added to compile Classpath
> -----------------------------------------------
>
>          Key: MNG-725
>          URL: http://jira.codehaus.org/browse/MNG-725
>      Project: Maven 2
>         Type: Bug
>     Reporter: Jesse McConnell
>      Fix For: 2.0-beta-2

>
>
> I am trying to use a meta dependency pom file to lump several dependencies together into one unit.
> on the webserver I have 
> <project>
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>meta-dependency</groupId>
>    <artifactId>oracle</artifactId>
>    <packaging>pom</packaging>
>    <version>1.0</version>
>    <name>oracle meta dependencies list</name>
>    <dependencies>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle</artifactId>
>          <version>9201</version>
>          <scope>provided</scope>
>       </dependency>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle_nls_charset</artifactId>
>          <version>9201.12</version>
>          <scope>provided</scope>
>       </dependency>
>    </dependencies>
> </project>
> in the local pom I have:
>       <dependency>
>          <groupId>meta-dependency</groupId>
>          <artifactId>oracle</artifactId>
>          <version>1.0</version>
>          <type>pom</type>
>       </dependency>
> Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.
> [DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
> [DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
> [DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)
> that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.
> I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.

-- 
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: (MNG-725) pom dependencies not added to compile Classpath

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

Brett Porter updated MNG-725:
-----------------------------

             Assign To: Brett Porter
    Remaining Estimate: 1 hour
     Original Estimate: 3600

> pom dependencies not added to compile Classpath
> -----------------------------------------------
>
>          Key: MNG-725
>          URL: http://jira.codehaus.org/browse/MNG-725
>      Project: Maven 2
>         Type: Bug
>     Reporter: Jesse McConnell
>     Assignee: Brett Porter
>      Fix For: 2.0-beta-2

>
> Original Estimate: 1 hour
>         Remaining: 1 hour
>
> I am trying to use a meta dependency pom file to lump several dependencies together into one unit.
> on the webserver I have 
> <project>
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>meta-dependency</groupId>
>    <artifactId>oracle</artifactId>
>    <packaging>pom</packaging>
>    <version>1.0</version>
>    <name>oracle meta dependencies list</name>
>    <dependencies>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle</artifactId>
>          <version>9201</version>
>          <scope>provided</scope>
>       </dependency>
>       <dependency>
>          <groupId>oracle</groupId>
>          <artifactId>oracle_nls_charset</artifactId>
>          <version>9201.12</version>
>          <scope>provided</scope>
>       </dependency>
>    </dependencies>
> </project>
> in the local pom I have:
>       <dependency>
>          <groupId>meta-dependency</groupId>
>          <artifactId>oracle</artifactId>
>          <version>1.0</version>
>          <type>pom</type>
>       </dependency>
> Note: I had to specify <type>pom</> here otherwise it defaulted to trying to find a .jar file for it even though the <packaging>pom</> was specified in the remote pom...this seemed redundent and unnecessary.  In this case the DEBUG showed it as oracle:jar:1.0 even though the remote pom was clearly in my local repo and was the one from the server, not a default one like kenney had mentioned might be the case on irc.
> [DEBUG]   xml-apis:xml-apis:jar:2.0.2 (selected for provided)
> [DEBUG]   meta-dependency:oracle:pom:1.0 (selected for compile)
> [DEBUG]   jclass:pagelayout:jar:5.0 (selected for provided)
> that is the debug output from the compiler, I would expect to see the dependencies in the remote pom listed just below the pom declaration.
> I initially tried this with <dependencyManagement injecting the version into the subproject pom, and that was the same deal.

-- 
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