Bug 54089 - maven dependency has wrong avalon group id
Summary: maven dependency has wrong avalon group id
Status: NEW
Alias: None
Product: Fop - Now in Jira
Classification: Unclassified
Component: general (show other bugs)
Version: 1.1
Hardware: PC All
: P2 major
Target Milestone: ---
Assignee: fop-dev
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-01 17:37 UTC by Lloyd
Modified: 2012-11-01 17:37 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lloyd 2012-11-01 17:37:10 UTC
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>