The POM for this specifies <dependency> <groupId>org.apache.uima</groupId> <artifactId>PearPackagingMavenPlugin</artifactId> <version>2.2.2-incubating</version> <scope>provided</scope> </dependency>
Because I blew away my local maven repo at some point and rebuilt it - it rebuilt with version 2.3.0-incubating-SANDBOX There are lots of potential "fixes" for this: 1) put our 2.2.2-incubating jars somewhere where they will be found (are they already? is my maven setup messed up?) 2) change the dependency here to allow a minimum level, but take later levels too? 3) not update the version for Jars that haven't changed (I'm guessing here that the PearPackagingMavenPlugin hasn't had an update for 2.3.0 but perhaps this is wrong... ) Maybe you have even better alternatives ;-) My temp fix was to change the POM in my checked out version of the WhitespaceTokenizer, to specify depending on the 2.3.0-incubating-SNAPSHOT version. Please chime in with your considered best practices here! -Marshall