svn commit: r960958 - /uima/build/trunk/aggregate-parent-poms/pom.xml

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 17:46:24 2010
New Revision: 960958

URL: http://svn.apache.org/viewvc?rev=960958view=rev
Log:
[UIMA-1822] override normal source-release.zip build to include special extra 
dir for some modules, so result will build.  Also fix mistake in relativePath

Modified:
uima/build/trunk/aggregate-parent-poms/pom.xml

Modified: uima/build/trunk/aggregate-parent-poms/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/aggregate-parent-poms/pom.xml?rev=960958r1=960957r2=960958view=diff
==
--- uima/build/trunk/aggregate-parent-poms/pom.xml (original)
+++ uima/build/trunk/aggregate-parent-poms/pom.xml Tue Jul  6 17:46:24 2010
@@ -24,8 +24,8 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
-relativePath../parent-pom-top/relativePath
+version4-SNAPSHOT/version
+relativePath../parent-poms/parent-pom-top/relativePath
   /parent
   
artifactIdaggregate-parent-poms/artifactId
@@ -79,4 +79,45 @@
   module../uima-docbook-resource-bundle/module
   module../uima-jar-resource-bundle/module
   /modules  
+  
+  !-- Override the default assembly for source-release to build with the 
+   extra parent-poms directory --
+  build
+plugins
+   plugin
+ artifactIdmaven-assembly-plugin/artifactId
+ version2.2-beta-5/version
+ executions
+   execution
+ idsource-release-assembly/id
+ phasepackage/phase
+ goals
+   goalsingle/goal
+ /goals
+ configuration
+   runOnlyAtExecutionRoottrue/runOnlyAtExecutionRoot
+   tarLongFileFormatgnu/tarLongFileFormat
+   descriptors
+ 
descriptorsrc/main/assembly/multimodule-source-release.xml/descriptor   
   
+   /descriptors
+ /configuration
+   /execution
+ /executions
+ dependencies
+   dependency
+ groupIdorg.apache.uima/groupId
+ artifactIduima-jar-resource-bundle/artifactId
+ version2/version
+ scopecompile/scope
+   /dependency
+   dependency
+ groupIdorg.apache.apache.resources/groupId
+ artifactIdapache-source-release-assembly-descriptor/artifactId
+ version1.0.2/version
+ scopecompile/scope
+   /dependency
+ /dependencies
+   /plugin
+/plugins
+  /build
 /project
\ No newline at end of file




svn commit: r960959 - in /uima/build/trunk/aggregate-parent-poms/src: ./ main/ main/assembly/ main/assembly/multimodule-source-release.xml

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 17:47:12 2010
New Revision: 960959

URL: http://svn.apache.org/viewvc?rev=960959view=rev
Log:
[UIMA-1822] override normal source-release.zip build to include special extra 
dir for some modules, so result will build.  

Added:
uima/build/trunk/aggregate-parent-poms/src/
uima/build/trunk/aggregate-parent-poms/src/main/
uima/build/trunk/aggregate-parent-poms/src/main/assembly/

uima/build/trunk/aggregate-parent-poms/src/main/assembly/multimodule-source-release.xml

Added: 
uima/build/trunk/aggregate-parent-poms/src/main/assembly/multimodule-source-release.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/aggregate-parent-poms/src/main/assembly/multimodule-source-release.xml?rev=960959view=auto
==
--- 
uima/build/trunk/aggregate-parent-poms/src/main/assembly/multimodule-source-release.xml
 (added)
+++ 
uima/build/trunk/aggregate-parent-poms/src/main/assembly/multimodule-source-release.xml
 Tue Jul  6 17:47:12 2010
@@ -0,0 +1,194 @@
+?xml version='1.0' encoding='UTF-8'?
+!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  License); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+--
+
+!-- create a source assembly for multi-module projects 
+ Runs only at the top level 
+ 
+ Special version for aggregate-parent-poms project 
+ --
+ 
+assembly
+  idsource-release/id
+  formats
+formatzip/format
+  /formats
+  moduleSets
+!-- module set for submodules of parent-poms directory --
+moduleSet
+  includes
+includeorg.apache.uima:parent-pom-annotator/include
+includeorg.apache.uima:parent-pom-distr/include
+includeorg.apache.uima:parent-pom-docbook/include
+includeorg.apache.uima:parent-pom-eclipse-plugins/include
+
includeorg.apache.uima:parent-pom-eclipse-plugins-ibm-notice/include
+includeorg.apache.uima:parent-pom-ibm-notice/include
+includeorg.apache.uima:parent-pom-single-project/include
+  /includes
+  sources
+!-- this is the magic that inserts the extra directory, so the zip 
file
+ has the same layout as SVN --
+
outputDirectoryMappingparent-poms/${module.artifactId}/outputDirectoryMapping
+fileSets
+  fileSet
+outputDirectory//outputDirectory
+useDefaultExcludestrue/useDefaultExcludes
+excludes
+  !-- build output --
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/).*${project.build.directory}.*]/exclude
+  
+  !-- NOTE: Most of the following excludes should not be required
+   if the standard release process is followed. This is 
because the
+   release plugin checks out project sources into a location 
like
+   target/checkout, then runs the build from there. The result 
is
+   a source-release archive that comes from a pretty clean 
directory
+   structure.
+  
+   HOWEVER, if the release plugin is configured to run extra 
goals
+   or generate a project website, it's definitely possible 
that some
+   of these files will be present. So, it's safer to exclude 
them.
+  --
+  
+  !-- IDEs --
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?maven-eclipse\.xml]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.project]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.classpath]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iws]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.ipr]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iml]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.settings(/.*)?]/exclude
+  
exclude%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.externalToolBuilders(/.*)?]/exclude
+  

svn commit: r960961 - in /uima/build/trunk: parent-poms/parent-pom-distr/ parent-poms/parent-pom-docbook/ parent-poms/parent-pom-single-project/ uima-assembly-single-project/ uima-build-helper-maven-p

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 17:50:04 2010
New Revision: 960961

URL: http://svn.apache.org/viewvc?rev=960961view=rev
Log:
[UIMA-1829] depend on current snapshot levels, also fix relative path for some 
to include extra parent-poms dir.  Also make order of sub elements in parent 
standard - groupId before artifactId

Modified:
uima/build/trunk/parent-poms/parent-pom-distr/pom.xml
uima/build/trunk/parent-poms/parent-pom-docbook/pom.xml
uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml
uima/build/trunk/uima-assembly-single-project/pom.xml
uima/build/trunk/uima-build-helper-maven-plugin/pom.xml
uima/build/trunk/uima-docbook-resource-bundle/pom.xml
uima/build/trunk/uima-jar-resource-bundle/pom.xml

Modified: uima/build/trunk/parent-poms/parent-pom-distr/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-distr/pom.xml?rev=960961r1=960960r2=960961view=diff
==
--- uima/build/trunk/parent-poms/parent-pom-distr/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-distr/pom.xml Tue Jul  6 17:50:04 
2010
@@ -27,7 +27,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
+version4-SNAPSHOT/version
 relativePath../parent-pom-top/relativePath
   /parent
 

Modified: uima/build/trunk/parent-poms/parent-pom-docbook/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-docbook/pom.xml?rev=960961r1=960960r2=960961view=diff
==
--- uima/build/trunk/parent-poms/parent-pom-docbook/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-docbook/pom.xml Tue Jul  6 17:50:04 
2010
@@ -28,7 +28,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
+version4-SNAPSHOT/version
 relativePath../parent-pom-top/relativePath
   /parent
 
@@ -129,7 +129,7 @@
   plugin
 groupIdorg.apache.uima/groupId
 artifactIduima-build-helper-maven-plugin/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 executions
   execution
 idset buildYear and buildMonth/id
@@ -179,7 +179,7 @@
 artifactItem
   groupIdorg.apache.uima/groupId
   artifactIduima-docbook-resource-bundle/artifactId
-  version1-SNAPSHOT/version
+  version2-SNAPSHOT/version
   excludesMETA-INF/**/excludes
   
outputDirectory${project.build.directory}/outputDirectory
 /artifactItem
@@ -202,7 +202,7 @@
 artifactItem
   groupIdorg.apache.uima/groupId
   artifactIduima-docbook-resource-bundle/artifactId
-  version1-SNAPSHOT/version
+  version2-SNAPSHOT/version
   excludesMETA-INF/**/excludes
   outputDirectory${dolRepo}/outputDirectory
 /artifactItem

Modified: uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml?rev=960961r1=960960r2=960961view=diff
==
--- uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-single-project/pom.xml Tue Jul  6 
17:50:04 2010
@@ -126,7 +126,7 @@
   dependency
 groupIdorg.apache.uima/groupId
 artifactIduima-assembly-single-project/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
   /dependency
 /dependencies
   /plugin

Modified: uima/build/trunk/uima-assembly-single-project/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/uima-assembly-single-project/pom.xml?rev=960961r1=960960r2=960961view=diff
==
--- uima/build/trunk/uima-assembly-single-project/pom.xml (original)
+++ uima/build/trunk/uima-assembly-single-project/pom.xml Tue Jul  6 17:50:04 
2010
@@ -52,8 +52,8 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
-relativePath../parent-pom-top/relativePath
+version4-SNAPSHOT/version
+relativePath../parent-poms/parent-pom-top/relativePath
   /parent
 
   artifactIduima-assembly-single-project/artifactId

Modified: uima/build/trunk/uima-build-helper-maven-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/uima-build-helper-maven-plugin/pom.xml?rev=960961r1=960960r2=960961view=diff

svn commit: r960962 - in /uima/uimaj/trunk: PearPackagingMavenPlugin/ aggregate-uimaj-docbooks/ aggregate-uimaj-eclipse-plugins/ aggregate-uimaj/ jVinci/ uima-docbook-overview-and-setup/ uima-docbook-

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 17:52:26 2010
New Revision: 960962

URL: http://svn.apache.org/viewvc?rev=960962view=rev
Log:
[UIMA-1829] depend on current snapshot levels

Modified:
uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml
uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml
uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml
uima/uimaj/trunk/aggregate-uimaj/pom.xml
uima/uimaj/trunk/jVinci/pom.xml
uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml
uima/uimaj/trunk/uima-docbook-references/pom.xml
uima/uimaj/trunk/uima-docbook-tools/pom.xml
uima/uimaj/trunk/uima-docbook-tutorials-and-users-guides/pom.xml
uima/uimaj/trunk/uimaj-adapter-soap/pom.xml
uima/uimaj/trunk/uimaj-adapter-vinci/pom.xml
uima/uimaj/trunk/uimaj-bootstrap/pom.xml
uima/uimaj/trunk/uimaj-component-test-util/pom.xml
uima/uimaj/trunk/uimaj-core/pom.xml
uima/uimaj/trunk/uimaj-cpe/pom.xml
uima/uimaj/trunk/uimaj-distr/pom.xml
uima/uimaj/trunk/uimaj-document-annotation/pom.xml
uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml
uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml
uima/uimaj/trunk/uimaj-eclipse-update-site/pom.xml
uima/uimaj/trunk/uimaj-ep-cas-editor/pom.xml
uima/uimaj/trunk/uimaj-ep-configurator/pom.xml
uima/uimaj/trunk/uimaj-ep-debug/pom.xml
uima/uimaj/trunk/uimaj-ep-jcasgen/pom.xml
uima/uimaj/trunk/uimaj-ep-pear-packager/pom.xml
uima/uimaj/trunk/uimaj-ep-runtime/pom.xml
uima/uimaj/trunk/uimaj-examples/pom.xml
uima/uimaj/trunk/uimaj-internal-tools/pom.xml
uima/uimaj/trunk/uimaj-test-util/pom.xml
uima/uimaj/trunk/uimaj-tools/pom.xml

Modified: uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml?rev=960962r1=960961r2=960962view=diff
==
--- uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml (original)
+++ uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml Tue Jul  6 17:52:26 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-docbook/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
   

Modified: uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml?rev=960962r1=960961r2=960962view=diff
==
--- uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml (original)
+++ uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml Tue Jul  6 17:52:26 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
+version4-SNAPSHOT/version
 relativePath/
   /parent
 

Modified: uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml?rev=960962r1=960961r2=960962view=diff
==
--- uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml (original)
+++ uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml Tue Jul  6 
17:52:26 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
+version4-SNAPSHOT/version
 relativePath/
   /parent
 

Modified: uima/uimaj/trunk/aggregate-uimaj/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/aggregate-uimaj/pom.xml?rev=960962r1=960961r2=960962view=diff
==
--- uima/uimaj/trunk/aggregate-uimaj/pom.xml (original)
+++ uima/uimaj/trunk/aggregate-uimaj/pom.xml Tue Jul  6 17:52:26 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-top/artifactId
-version2/version
+version4-SNAPSHOT/version
 relativePath/
   /parent
 

Modified: uima/uimaj/trunk/jVinci/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/jVinci/pom.xml?rev=960962r1=960961r2=960962view=diff
==
--- uima/uimaj/trunk/jVinci/pom.xml (original)
+++ uima/uimaj/trunk/jVinci/pom.xml Tue Jul  6 17:52:26 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-ibm-notice/artifactId
-version1-SNAPSHOT/version 
+version2-SNAPSHOT/version 
 relativePath/
   /parent
 

Modified: uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml?rev=960962r1=960961r2=960962view=diff
==
--- uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml (original)
+++ 

svn commit: r960963 - in /uima/sandbox/trunk: AlchemyAPIAnnotator/ BSFAnnotator/ ConceptMapper/ ConfigurableFeatureExtractor/ DictionaryAnnotator/ FsVariables/ Lucas/ OpenCalaisAnnotator/ PearPackagin

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 17:53:28 2010
New Revision: 960963

URL: http://svn.apache.org/viewvc?rev=960963view=rev
Log:
[UIMA-1829] depend on current snapshot levels

Modified:
uima/sandbox/trunk/AlchemyAPIAnnotator/pom.xml
uima/sandbox/trunk/BSFAnnotator/pom.xml
uima/sandbox/trunk/ConceptMapper/pom.xml
uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml
uima/sandbox/trunk/DictionaryAnnotator/pom.xml
uima/sandbox/trunk/FsVariables/pom.xml
uima/sandbox/trunk/Lucas/pom.xml
uima/sandbox/trunk/OpenCalaisAnnotator/pom.xml
uima/sandbox/trunk/PearPackagingAntTask/pom.xml
uima/sandbox/trunk/RegularExpressionAnnotator/pom.xml
uima/sandbox/trunk/SimpleServer/pom.xml
uima/sandbox/trunk/SnowballAnnotator/pom.xml
uima/sandbox/trunk/Tagger/pom.xml
uima/sandbox/trunk/TikaAnnotator/pom.xml
uima/sandbox/trunk/WhitespaceTokenizer/pom.xml
uima/sandbox/trunk/aggregate-addons/pom.xml

Modified: uima/sandbox/trunk/AlchemyAPIAnnotator/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/AlchemyAPIAnnotator/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/AlchemyAPIAnnotator/pom.xml (original)
+++ uima/sandbox/trunk/AlchemyAPIAnnotator/pom.xml Tue Jul  6 17:53:28 2010
@@ -24,7 +24,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-annotator/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
   

Modified: uima/sandbox/trunk/BSFAnnotator/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/BSFAnnotator/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/BSFAnnotator/pom.xml (original)
+++ uima/sandbox/trunk/BSFAnnotator/pom.xml Tue Jul  6 17:53:28 2010
@@ -30,7 +30,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-single-project/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
 

Modified: uima/sandbox/trunk/ConceptMapper/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/ConceptMapper/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/ConceptMapper/pom.xml (original)
+++ uima/sandbox/trunk/ConceptMapper/pom.xml Tue Jul  6 17:53:28 2010
@@ -24,7 +24,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-annotator/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
   

Modified: uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml (original)
+++ uima/sandbox/trunk/ConfigurableFeatureExtractor/pom.xml Tue Jul  6 17:53:28 
2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-annotator/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
 

Modified: uima/sandbox/trunk/DictionaryAnnotator/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/DictionaryAnnotator/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/DictionaryAnnotator/pom.xml (original)
+++ uima/sandbox/trunk/DictionaryAnnotator/pom.xml Tue Jul  6 17:53:28 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-annotator/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
   

Modified: uima/sandbox/trunk/FsVariables/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/FsVariables/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/FsVariables/pom.xml (original)
+++ uima/sandbox/trunk/FsVariables/pom.xml Tue Jul  6 17:53:28 2010
@@ -25,7 +25,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-single-project/artifactId
-version1-SNAPSHOT/version
+version2-SNAPSHOT/version
 relativePath/
   /parent
   

Modified: uima/sandbox/trunk/Lucas/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/sandbox/trunk/Lucas/pom.xml?rev=960963r1=960962r2=960963view=diff
==
--- uima/sandbox/trunk/Lucas/pom.xml (original)
+++ uima/sandbox/trunk/Lucas/pom.xml Tue Jul  6 17:53:28 2010
@@ -24,7 +24,7 @@
   parent
 groupIdorg.apache.uima/groupId
 artifactIdparent-pom-annotator/artifactId
-

svn commit: r960967 - /uima/build/trunk/parent-poms/parent-pom-top/pom.xml

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 18:02:57 2010
New Revision: 960967

URL: http://svn.apache.org/viewvc?rev=960967view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
uima/build/trunk/parent-poms/parent-pom-top/pom.xml

Modified: uima/build/trunk/parent-poms/parent-pom-top/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-top/pom.xml?rev=960967r1=960966r2=960967view=diff
==
--- uima/build/trunk/parent-poms/parent-pom-top/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-top/pom.xml Tue Jul  6 18:02:57 2010
@@ -55,7 +55,7 @@
   
groupIdorg.apache.uima/groupId
artifactIdparent-pom-top/artifactId
-  version4/version
+  version5-SNAPSHOT/version
packagingpom/packaging
 
   nameUIMA ${project.artifactId}/name
@@ -122,13 +122,13 @@
 
   scm
 connection
-  scm:svn:http://svn.apache.org/repos/asf/uima/build/tags/parent-pom-top-4
+  
scm:svn:http://svn.apache.org/repos/asf/uima/build/trunk/parent-poms/parent-pom-top
 /connection
 developerConnection
-  scm:svn:https://svn.apache.org/repos/asf/uima/build/tags/parent-pom-top-4
+  
scm:svn:https://svn.apache.org/repos/asf/uima/build/trunk/parent-poms/parent-pom-top
 /developerConnection
 url
-  http://svn.apache.org/viewvc/uima/build/tags/parent-pom-top-4
+  http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-top
 /url
   /scm
   




svn commit: r960965 - /uima/build/trunk/parent-poms/parent-pom-top/pom.xml

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 18:02:48 2010
New Revision: 960965

URL: http://svn.apache.org/viewvc?rev=960965view=rev
Log:
[maven-release-plugin] prepare release parent-pom-top-4

Modified:
uima/build/trunk/parent-poms/parent-pom-top/pom.xml

Modified: uima/build/trunk/parent-poms/parent-pom-top/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-top/pom.xml?rev=960965r1=960964r2=960965view=diff
==
--- uima/build/trunk/parent-poms/parent-pom-top/pom.xml (original)
+++ uima/build/trunk/parent-poms/parent-pom-top/pom.xml Tue Jul  6 18:02:48 2010
@@ -55,7 +55,7 @@
   
groupIdorg.apache.uima/groupId
artifactIdparent-pom-top/artifactId
-  version4-SNAPSHOT/version
+  version4/version
packagingpom/packaging
 
   nameUIMA ${project.artifactId}/name
@@ -122,13 +122,13 @@
 
   scm
 connection
-  
scm:svn:http://svn.apache.org/repos/asf/uima/build/trunk/parent-poms/parent-pom-top
+  scm:svn:http://svn.apache.org/repos/asf/uima/build/tags/parent-pom-top-4
 /connection
 developerConnection
-  
scm:svn:https://svn.apache.org/repos/asf/uima/build/trunk/parent-poms/parent-pom-top
+  scm:svn:https://svn.apache.org/repos/asf/uima/build/tags/parent-pom-top-4
 /developerConnection
 url
-  http://svn.apache.org/viewvc/uima/build/trunk/parent-poms/parent-pom-top
+  http://svn.apache.org/viewvc/uima/build/tags/parent-pom-top-4
 /url
   /scm
   




svn commit: r960966 - /uima/build/tags/parent-pom-top-4/

2010-07-06 Thread schor
Author: schor
Date: Tue Jul  6 18:02:54 2010
New Revision: 960966

URL: http://svn.apache.org/viewvc?rev=960966view=rev
Log:
[maven-release-plugin]  copy for tag parent-pom-top-4

Added:
uima/build/tags/parent-pom-top-4/
  - copied from r960965, uima/build/trunk/parent-poms/parent-pom-top/