Downloaded source-release.zip, verified it had license/notice, verified it had license headers in the files. Downloaded the sources.zip, and the .jar, and verified they had license/notice in the manifest + license headers in the files.
Downloaded and verified the pom - has license header Built from source-release - OK. Changed the parent-pom-top <build> section dependency to depend on this new artifact. Removed the version 2 level of this new artifact from my local repo (the release:perform had installed it there), and confirmed that the parent-pom-top now didn't build (I hadn't changed by settings.xml file to use the staging repo.) Then I changed the settings.xml file, and it then built. One strange thing happened - I'm building on a windows XP SP 3 platform. When I went to my local .m2 repo to delete the version 2 of uima-jar-resource-bundle artifact, it wasn't there ! The directory listing (which I had sorted on Name) showed: ... uima-docbook-tutorials-and-users-guides uimaj uimaj-adapter-soap uimaj-adapter-vinci ... uimaj-tools WhitespaceTokenizer Well, it turned out that it was there. I had assumed that sorting directories by name sorted all the characters in the name, including "-". But it seems that Windows in this version sorts by stripping out those '-' chars, and sorting the letters/numbers that remain. So it came up with a sort order: ... uima-docbook-tutorials-and-users-guides uimaj uimaj-adapter-soap uimaj-adapter-vinci uima-jar-resource-bundle <<<< HERE IT IS ! uimaj-as ... uimaj-tools WhitespaceTokenizer So, after all this, a +1 from me :-) -Marshall On 7/1/2010 4:35 PM, Marshall Schor wrote: > This is identical to the artifact you previously voted on, except it is > being released by itself, first, per > https://issues.apache.org/jira/browse/UIMA-1823, and the release version > is changed to 2. > > The release is staged here: > https://repository.apache.org/content/repositories/orgapacheuima-030/ > Suggested way to test: add/update this to your maven "settings" in the > <profiles> section: > > <profile> > <id>staged-release</id> > <repositories> > <repository> > <id>staged-release</id> > > <url>https://repository.apache.org/content/repositories/orgapacheuima-030/</url> > </repository> > </repositories> > </profile> > > Please verify this by changing references to 1-SNAPSHOT versions of > uima-jar-resource-bundle to version 2 (without the SNAPSHOT), > and see if things build, using the command > > mvn install -Pstaged-release > > More background on this approach is here: > http://maven.apache.org/guides/development/guide-testing-releases.html > > > Vote open for 72 hours. > > [ ] +1 > [ ] +0 > [ ] -1 > > -Marshall > > > > >
