You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "mollusk (JIRA)" <ji...@codehaus.org> on 2008/04/04 20:03:59 UTC

[jira] Issue Comment Edited: (MNG-1823) dependencies with classifier mask transitive dependencies of same dependency without classifier

    [ http://jira.codehaus.org/browse/MNG-1823?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=129854#action_129854 ] 

mollusk edited comment on MNG-1823 at 4/4/08 1:02 PM:
------------------------------------------------------

I have the same problem , but only on unix platform
test-jar dependencies work fine on windows

it seems that the problem comes from maven-jar-compiler, because the depencies are in maven.compile.classpath

as a work arround , i launch javac ant task before the compile phase

 <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.2-SNAPSHOT</version>
<executions>
<execution>
<id>ant.compile-source</id>
<phase>process-sources</phase>
<configuration>
<tasks >
<echo message="compilation using ant" />
<mkdir dir="target/classes" />
<javac
destdir="target/classes"
srcdir="src/main/java"
source="1.5"
target="1.5">
<classpath refid="maven.compile.classpath" />
</javac>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</plugin>

      was (Author: mollusk):
    I have the same problem , but only on unix platform
test-jar dependencies work fine on windows

it seems that the problem comes from maven-jar-compiler, because the depencies are in maven.compile.classpath

as a work arround , i launch javac ant task before the compile phase

 <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.2-SNAPSHOT</version>
<executions>
<execution>
<id>pm.ant.compile-source</id>
<phase>process-sources</phase>
<configuration>
<tasks >
<echo message="compilation using ant" />
<mkdir dir="target/classes" />
<javac
destdir="target/classes"
srcdir="src/main/java"
source="1.5"
target="1.5">
<classpath refid="maven.compile.classpath" />
</javac>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</plugin>
  
> dependencies with classifier mask transitive dependencies of same dependency without classifier
> -----------------------------------------------------------------------------------------------
>
>                 Key: MNG-1823
>                 URL: http://jira.codehaus.org/browse/MNG-1823
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Inheritance and Interpolation
>    Affects Versions: 2.0.1
>            Reporter: Jorg Heymans
>            Assignee: Carlos Sanchez
>             Fix For: 2.1
>
>
> A module in cocoon has following dependencies : 
>    <dependency>
>       <groupId>org.apache.cocoon</groupId>
>       <artifactId>cocoon-core</artifactId>
>       <version>2.2.0-SNAPSHOT</version>
>       <classifier>tests</classifier>
>       <scope>test</scope>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.cocoon</groupId>
>       <artifactId>cocoon-core</artifactId>
>       <version>2.2.0-SNAPSHOT</version>
>     </dependency>
> The first dependency is created by the core module using :
>       <plugin>
>         <artifactId>maven-jar-plugin</artifactId>
>         <executions>
>           <execution>
>             <goals>
>               <goal>test-jar</goal>
>             </goals>
>           </execution>
>         </executions>
>       </plugin>
> Now i would like the module to depend on the jar with classifier "tests" during the testing phase ie cocoon-core-2.2.0-SNAPSHOT-tests.jar, and during the normal compilation phase it should just use cocoon-core-2.2.0-SNAPSHOT.jar. IMO above dependencies express exactly this.
> The problem is that maven somehow removes all transitive dependencies from  cocoon-core-2.2.0-SNAPSHOT.jar when both dependencies are in place, breaking compilation. When i remove the dependency with the classifier, then all is fine (but ofcourse my tests can't run)
> I hope above is clear, otherwise just ping me on irc

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