You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by "Marcus Collins (JIRA)" <ji...@apache.org> on 2014/06/09 11:37:02 UTC

[jira] [Commented] (FOP-2151) maven dependency has wrong avalon group id

    [ https://issues.apache.org/jira/browse/FOP-2151?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14021798#comment-14021798 ] 

Marcus Collins commented on FOP-2151:
-------------------------------------

How does this fix get published to maven central?
The incorrect POM is still on http://repo1.maven.org/maven2/org/apache/xmlgraphics/fop/1.1/fop-1.1.pom


> maven dependency has wrong avalon group id
> ------------------------------------------
>
>                 Key: FOP-2151
>                 URL: https://issues.apache.org/jira/browse/FOP-2151
>             Project: Fop
>          Issue Type: Bug
>          Components: unqualified
>    Affects Versions: 1.1
>         Environment: Operating System: 
> Platform: PC
>            Reporter: Lloyd
>
> The maven pom for fop 1.1 uses incorrect dependency for avalon framework. With 4.2.0 the the group id changed to avalon-framework from org.apache.avalon.framework
> workaround: update pom as follows
>  <dependency>
>   <groupId>org.apache.xmlgraphics</groupId>
>   <artifactId>fop</artifactId>
>   <version>1.1</version>
>   <exclusions>
>   	<exclusion>
>   		<artifactId>avalon-framework-api</artifactId>
>   		<groupId>org.apache.avalon.framework</groupId>
>   	</exclusion>
>   	<exclusion>
>   		<artifactId>avalon-framework-impl</artifactId>
>   		<groupId>org.apache.avalon.framework</groupId>
>   	</exclusion>
>   </exclusions>
>   </dependency>
>   <!--  these two are to correct issues in  fop dependency --> 
>   <dependency>
>    <groupId>avalon-framework</groupId>
>    <artifactId>avalon-framework-api</artifactId>
>    <version>4.2.0</version>
>   </dependency>
>   <dependency>
>    <groupId>avalon-framework</groupId>
>    <artifactId>avalon-framework-impl</artifactId>
>    <version>4.2.0</version>
>   </dependency>



--
This message was sent by Atlassian JIRA
(v6.2#6252)