David Jencks wrote:
looks like eclipse's reliance on require-package is going to be a
major problem.
I'd start by repackaging their bundle to use export/import-package.
Has smx done this already?
It looks like there is a version of jdt-core there, so I'll try
switching to that.
Looking a little deeper into the build issues after I removed the
exclusions, it looks like my real error is from how the eclipse poms are
handling the dependencies. The org.eclipse.core bundles have declared
dependencies that specifies a version range between 1.0.0 and 2.0.0,
but the equinox app pom is giving a version of 1.0.0 -v20070606, which
is failing the test. I'll try the service mix version first.
Rick
thanks
david jencks
On Oct 22, 2009, at 10:14 AM, Rick McGuire wrote:
The Tomcat plugin has a fairly amazing dependency chain to resolve :-)
Right now, I'm trying to get the jasper plugin to build, and I'm
having some bundle resolution issues. The Jasper plugin pulls in
org.eclipse.jdt.core bundle (which IS a bundle already). That bundle
has required bundle dependencies declared for a number of other
eclipse runtime bundles in org.eclipse.core (resources, runtime,
etc). Unfortunately, these dependencies don't appear to be in any of
the maven repositories we're using for the builds, so I can't seem to
resolve these. In previous releases, we had exclusions defined for
those jars, but since this jar is now loading as a bundle, the
internal constraints are kicking in preventing the bundle from starting.
Rick