transitive dependencies do not get included
-------------------------------------------

                 Key: MASSEMBLY-242
                 URL: http://jira.codehaus.org/browse/MASSEMBLY-242
             Project: Maven 2.x Assembly Plugin
          Issue Type: Bug
    Affects Versions: 2.2-beta-1
         Environment: maven 2.0.7
            Reporter: manuel aldana
            Priority: Blocker


i am using assembly plugin with standard descriptor jar-with-dependencies. 
problem is that transitive dependencies do not get included.

pom.xml from project A:
...
 <groupId>a</groupId>
 <artifactId>a</artifactId>
 <version>1.0</version>
 <dependencies>
    <dependency>
      <groupId>tran</groupId>
      <artifactId>dep</artifactId>
      <version>1.0</version>
    </dependency>  
   </dependencies>
...


pom.xml from project B:
...
 <groupId>b</groupId>
 <artifactId>b</artifactId>
 <version>1.0</version>
 <build>
     ... enabling assembly-plugin with jar-with-dependencies...
 </build>
 <dependencies>
    <dependency>
      <groupId>a</groupId>
      <artifactId>a</artifactId>
      <version>1.0</version>
    </dependency>  
 </dependencies>
...

i am doing assembly:assembly on b:b. now tran:dep does not get included though 
it is defined in a:a. that means: if i open the assembled jar-file (from b:b) i 
cannot see any artifacts from tran:dep.

for earlier discussion on mailingslist see 
http://www.nabble.com/assembly-plugin%3A-transitive-dependencies-do-not-get-included-tf4317601s177.html#a12308820


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

        

Reply via email to