On Sat, Jul 3, 2010 at 20:08, vmassol <[email protected]> wrote: > Author: vmassol > Date: 2010-07-03 20:08:56 +0200 (Sat, 03 Jul 2010) > New Revision: 29958 > > Modified: > platform/core/trunk/pom.xml > platform/core/trunk/xwiki-chart/xwiki-chart-renderer/pom.xml > platform/core/trunk/xwiki-core/pom.xml > Log: > XWIKI-867: Move to the latest JFreeChart library version > > * Fixed missing dependency in POM > > Modified: platform/core/trunk/pom.xml > =================================================================== > --- platform/core/trunk/pom.xml 2010-07-03 16:38:29 UTC (rev 29957) > +++ platform/core/trunk/pom.xml 2010-07-03 18:08:56 UTC (rev 29958) > @@ -70,6 +70,13 @@ > <artifactId>jfreechart</artifactId> > <version>1.0.13</version> > </dependency> > + <!-- JFreeChart 1.0.13 has no POM file in the Maven Central Repository > and thus we need to manually define > + its own Maven dependency on JFree Common. Remove this dependency > when it's fixed. --> > + <dependency> > + <groupId>jfree</groupId> > + <artifactId>jcommon</artifactId> > + <version>1.0.15</version> > + </dependency> > </dependencies> > </dependencyManagement> > <build>
Thanks, I was wondering why it did not worked when looking at hudson but did not had time to look yet. > > Modified: platform/core/trunk/xwiki-chart/xwiki-chart-renderer/pom.xml > =================================================================== > --- platform/core/trunk/xwiki-chart/xwiki-chart-renderer/pom.xml > 2010-07-03 16:38:29 UTC (rev 29957) > +++ platform/core/trunk/xwiki-chart/xwiki-chart-renderer/pom.xml > 2010-07-03 18:08:56 UTC (rev 29958) > @@ -41,6 +41,12 @@ > <groupId>jfree</groupId> > <artifactId>jfreechart</artifactId> > </dependency> > + <!-- JFreeChart 1.0.13 has no POM file in the Maven Central Repository > and thus we need to manually define > + its own Maven dependency on JFree Common. Remove this dependency > when it's fixed. --> > + <dependency> > + <groupId>jfree</groupId> > + <artifactId>jcommon</artifactId> > + </dependency> > <!-- Testing dependencies --> > <dependency> > <groupId>org.xwiki.platform</groupId> > > Modified: platform/core/trunk/xwiki-core/pom.xml > =================================================================== > --- platform/core/trunk/xwiki-core/pom.xml 2010-07-03 16:38:29 UTC (rev > 29957) > +++ platform/core/trunk/xwiki-core/pom.xml 2010-07-03 18:08:56 UTC (rev > 29958) > @@ -134,6 +134,12 @@ > <groupId>jfree</groupId> > <artifactId>jfreechart</artifactId> > </dependency> > + <!-- JFreeChart 1.0.13 has no POM file in the Maven Central Repository > and thus we need to manually define > + its own Maven dependency on JFree Common. Remove this dependency > when it's fixed. --> > + <dependency> > + <groupId>jfree</groupId> > + <artifactId>jcommon</artifactId> > + </dependency> > > <!-- See http://jira.codehaus.org/browse/MEV-488 --> > <dependency> > > _______________________________________________ > notifications mailing list > [email protected] > http://lists.xwiki.org/mailman/listinfo/notifications > -- Thomas Mortagne _______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs

