Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [bpmn-dev] Re: Created a committer build, up for testing

I seem to be at the end of a blocked IP range here, so I
can't ssh to the infrastructure. I've requested that the web
master check it out and get me unblocked.

Also, there is that bug that prevents me from doing a
build on Mac. So what goes below is without actual
proof!

The buckminster artifact that identifies what features are
to go in into the update site are specified in [0].  It's a little
confusing, because they are specified in more than one
place.

There's also a "magic filter" that filters what plugins get
included in the site. It might be that is the issue.

If you see the attribute:

includePattern="org\.eclipse\.stp\.bpmn\.(.*)"

that regular expression is matching every plugin that
matches org.eclipse.stp.bpmn.xxxxxxx - and this seems
not to be what's needed here. So try changing to

includePattern="org\.eclipse\.stp\.bpmn(.*)"

ie, removing the \. so that now the match will include
plain old org.eclipse.stp.bpmn as well as the
org.eclipse.stp.bpmn.* match.

Darn regexps!

[0]  http://dev.eclipse.org/svnroot/stp/org.eclipse.stp.bpmn-modeler/org.eclipse.stp.bpmn/trunk/build/buckminster/bpmn-modeler.builder/buckminster.cspec


Back to the top