Ahhhh ... the literals problem ... HMMMM ...
As a workaround, you should be able to do the following:
baseline: spec
<baseline>
self baselineNextPlanCommon: spec.
self baselineNextPlan: spec.
and just include the specs in each of the methods without using pragmas ... I normally don't like to encourage calling methods from within specs, but technically it functions the same as an import ... Someday the specs not be executable Smalltalk and doing anything other than calling the "standard baseline messages" will be hard to duplicate.
This should get you going and I'll take the notion of being able to import multiple baselines in a single BaselineOf under consideration ... As I said I don't like to encourage calling arbitrary methods from within a spec, OTOH it _will_ be a bit of work to allow BaselineOfs to use a form of import ...
Regarding creating two BaselineOf ... you _can_ do it that way, but you need to treat each Baseline as a separate project with separate repository, etc. (so you wouldn't use any form of import:) ... this would be way too painful to use in practice ...
My thoughts at the moment center on creating a single BaselineOf per repository/project that manages all of the packages ... I had conveniently forgotten the fact that it is easy to run into the literal limits ....
As an aside, I have anticipated hitting issues like this and consequently I have delayed the formal release of the Preview until I have seen and resolved them:)
I will most likely come up with a form of import that will allow you to segment your baseline over several methods in a single BaselineOf ... but it will take a bit of time before I have a satisfactory solution...
Let me know if the workaround I suggest works for you...