You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by am...@apache.org on 2014/12/17 13:31:32 UTC

svn commit: r1646215 - in /jackrabbit/oak/branches/1.0: ./ oak-auth-external/ oak-auth-ldap/ oak-blob/ oak-commons/ oak-core/ oak-http/ oak-it/ oak-it/mk/ oak-it/osgi/ oak-jcr/ oak-lucene/ oak-mk-api/ oak-mk-remote/ oak-mk/ oak-parent/ oak-pojosr/ oak-...

Author: amitj
Date: Wed Dec 17 12:31:32 2014
New Revision: 1646215

URL: http://svn.apache.org/r1646215
Log:
[maven-release-plugin] prepare release jackrabbit-oak-1.0.9

Modified:
    jackrabbit/oak/branches/1.0/oak-auth-external/pom.xml
    jackrabbit/oak/branches/1.0/oak-auth-ldap/pom.xml
    jackrabbit/oak/branches/1.0/oak-blob/pom.xml
    jackrabbit/oak/branches/1.0/oak-commons/pom.xml
    jackrabbit/oak/branches/1.0/oak-core/pom.xml
    jackrabbit/oak/branches/1.0/oak-http/pom.xml
    jackrabbit/oak/branches/1.0/oak-it/mk/pom.xml
    jackrabbit/oak/branches/1.0/oak-it/osgi/pom.xml
    jackrabbit/oak/branches/1.0/oak-it/pom.xml
    jackrabbit/oak/branches/1.0/oak-jcr/pom.xml
    jackrabbit/oak/branches/1.0/oak-lucene/pom.xml
    jackrabbit/oak/branches/1.0/oak-mk-api/pom.xml
    jackrabbit/oak/branches/1.0/oak-mk-remote/pom.xml
    jackrabbit/oak/branches/1.0/oak-mk/pom.xml
    jackrabbit/oak/branches/1.0/oak-parent/pom.xml
    jackrabbit/oak/branches/1.0/oak-pojosr/pom.xml
    jackrabbit/oak/branches/1.0/oak-run/pom.xml
    jackrabbit/oak/branches/1.0/oak-solr-core/pom.xml
    jackrabbit/oak/branches/1.0/oak-solr-osgi/pom.xml
    jackrabbit/oak/branches/1.0/oak-tarmk-standby/pom.xml
    jackrabbit/oak/branches/1.0/oak-upgrade/pom.xml
    jackrabbit/oak/branches/1.0/pom.xml

Modified: jackrabbit/oak/branches/1.0/oak-auth-external/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-auth-external/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-auth-external/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-auth-external/pom.xml Wed Dec 17 12:31:32 2014
@@ -1,184 +1,184 @@
-<?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.
-  -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.jackrabbit</groupId>
-        <artifactId>oak-parent</artifactId>
-        <version>1.0.9-SNAPSHOT</version>
-        <relativePath>../oak-parent/pom.xml</relativePath>
-    </parent>
-
-    <artifactId>oak-auth-external</artifactId>
-    <name>Oak External Authentication Support</name>
-    <packaging>bundle</packaging>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-scr-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>test-jar</goal>
-                        </goals>
-                        <configuration>
-                            <excludes>
-                                <exclude>logback-test.xml</exclude>
-                            </excludes>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <artifactId>maven-failsafe-plugin</artifactId>
-                <configuration>
-                    <systemPropertyVariables>
-                        <java.util.logging.config.file>
-                            src/test/resources/logging.properties
-                        </java.util.logging.config.file>
-                    </systemPropertyVariables>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <!-- Optional OSGi dependencies, used only when running within OSGi -->
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.compendium</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.jaas</artifactId>
-            <version>0.0.2</version>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>biz.aQute.bnd</groupId>
-            <artifactId>bndlib</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.scr.annotations</artifactId>
-            <scope>provided</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.jackrabbit</groupId>
-            <artifactId>oak-core</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>com.google.guava</groupId>
-            <artifactId>guava</artifactId>
-        </dependency>
-
-        <!-- JCR and Jackrabbit dependencies -->
-        <dependency>
-            <groupId>javax.jcr</groupId>
-            <artifactId>jcr</artifactId>
-            <version>2.0</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jackrabbit</groupId>
-            <artifactId>jackrabbit-api</artifactId>
-            <version>${jackrabbit.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.jackrabbit</groupId>
-            <artifactId>jackrabbit-jcr-commons</artifactId>
-            <version>${jackrabbit.version}</version>
-        </dependency>
-
-        <!-- Logging -->
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-
-        <!-- Findbugs annotations -->
-        <dependency>
-            <groupId>com.google.code.findbugs</groupId>
-            <artifactId>jsr305</artifactId>
-        </dependency>
-
-        <!-- Test Dependencies -->
-        <dependency>
-            <groupId>org.apache.jackrabbit</groupId>
-            <artifactId>oak-core</artifactId>
-            <version>${project.version}</version>
-            <classifier>tests</classifier>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.easymock</groupId>
-            <artifactId>easymock</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.h2database</groupId>
-            <artifactId>h2</artifactId>
-            <version>1.4.182</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>jul-to-slf4j</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>commons-io</groupId>
-            <artifactId>commons-io</artifactId>
-            <version>2.4</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-</project>
+<?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.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>oak-parent</artifactId>
+        <version>1.0.9</version>
+        <relativePath>../oak-parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>oak-auth-external</artifactId>
+    <name>Oak External Authentication Support</name>
+    <packaging>bundle</packaging>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-scr-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>test-jar</goal>
+                        </goals>
+                        <configuration>
+                            <excludes>
+                                <exclude>logback-test.xml</exclude>
+                            </excludes>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <configuration>
+                    <systemPropertyVariables>
+                        <java.util.logging.config.file>
+                            src/test/resources/logging.properties
+                        </java.util.logging.config.file>
+                    </systemPropertyVariables>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <!-- Optional OSGi dependencies, used only when running within OSGi -->
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.jaas</artifactId>
+            <version>0.0.2</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>bndlib</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.scr.annotations</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>com.google.guava</groupId>
+            <artifactId>guava</artifactId>
+        </dependency>
+
+        <!-- JCR and Jackrabbit dependencies -->
+        <dependency>
+            <groupId>javax.jcr</groupId>
+            <artifactId>jcr</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-api</artifactId>
+            <version>${jackrabbit.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-jcr-commons</artifactId>
+            <version>${jackrabbit.version}</version>
+        </dependency>
+
+        <!-- Logging -->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+
+        <!-- Findbugs annotations -->
+        <dependency>
+            <groupId>com.google.code.findbugs</groupId>
+            <artifactId>jsr305</artifactId>
+        </dependency>
+
+        <!-- Test Dependencies -->
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-core</artifactId>
+            <version>${project.version}</version>
+            <classifier>tests</classifier>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.h2database</groupId>
+            <artifactId>h2</artifactId>
+            <version>1.4.182</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jul-to-slf4j</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Modified: jackrabbit/oak/branches/1.0/oak-auth-ldap/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-auth-ldap/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-auth-ldap/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-auth-ldap/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.jackrabbit</groupId>
         <artifactId>oak-parent</artifactId>
-        <version>1.0.9-SNAPSHOT</version>
+        <version>1.0.9</version>
         <relativePath>../oak-parent/pom.xml</relativePath>
     </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-blob/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-blob/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-blob/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-blob/pom.xml Wed Dec 17 12:31:32 2014
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>oak-parent</artifactId>
     <groupId>org.apache.jackrabbit</groupId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>

Modified: jackrabbit/oak/branches/1.0/oak-commons/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-commons/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-commons/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-commons/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-core/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-core/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-core/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-http/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-http/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-http/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-http/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-it/mk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-it/mk/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-it/mk/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-it/mk/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-it/osgi/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-it/osgi/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-it/osgi/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-it/osgi/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-it/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-it/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-it/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-it/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-jcr/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-jcr/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-jcr/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-jcr/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-lucene/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-lucene/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-lucene/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-lucene/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-mk-api/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-mk-api/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-mk-api/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-mk-api/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-mk-remote/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-mk-remote/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-mk-remote/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-mk-remote/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-mk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-mk/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-mk/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-mk/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-parent/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-parent/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-parent/pom.xml Wed Dec 17 12:31:32 2014
@@ -30,7 +30,7 @@
   <groupId>org.apache.jackrabbit</groupId>
   <artifactId>oak-parent</artifactId>
   <name>Oak Parent POM</name>
-  <version>1.0.9-SNAPSHOT</version>
+  <version>1.0.9</version>
   <packaging>pom</packaging>
 
   <properties>
@@ -453,4 +453,10 @@
       </properties>
     </profile>
   </profiles>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/pom/tags/jackrabbit-oak-1.0.9/oak-parent</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/tags/jackrabbit-oak-1.0.9/oak-parent</developerConnection>
+    <url>http://svn.apache.org/viewvc/maven/pom/tags/jackrabbit-oak-1.0.9/oak-parent</url>
+  </scm>
 </project>

Modified: jackrabbit/oak/branches/1.0/oak-pojosr/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-pojosr/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-pojosr/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-pojosr/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-run/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-run/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-run/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-run/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-solr-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-solr-core/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-solr-core/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-solr-core/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.jackrabbit</groupId>
         <artifactId>oak-parent</artifactId>
-        <version>1.0.9-SNAPSHOT</version>
+        <version>1.0.9</version>
         <relativePath>../oak-parent/pom.xml</relativePath>
     </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-solr-osgi/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-solr-osgi/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-solr-osgi/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-solr-osgi/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.jackrabbit</groupId>
         <artifactId>oak-parent</artifactId>
-        <version>1.0.9-SNAPSHOT</version>
+        <version>1.0.9</version>
         <relativePath>../oak-parent/pom.xml</relativePath>
     </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-tarmk-standby/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-tarmk-standby/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-tarmk-standby/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-tarmk-standby/pom.xml Wed Dec 17 12:31:32 2014
@@ -17,7 +17,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/oak-upgrade/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/oak-upgrade/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/oak-upgrade/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/oak-upgrade/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 

Modified: jackrabbit/oak/branches/1.0/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0/pom.xml?rev=1646215&r1=1646214&r2=1646215&view=diff
==============================================================================
--- jackrabbit/oak/branches/1.0/pom.xml (original)
+++ jackrabbit/oak/branches/1.0/pom.xml Wed Dec 17 12:31:32 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.jackrabbit</groupId>
     <artifactId>oak-parent</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.0.9</version>
     <relativePath>oak-parent/pom.xml</relativePath>
   </parent>
 
@@ -58,9 +58,9 @@
   </modules>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/oak/branches/1.0</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/oak/branches/1.0</developerConnection>
-    <url>http://svn.apache.org/viewvc/jackrabbit/oak/branches/1.0</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/oak/tags/jackrabbit-oak-1.0.9</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/oak/tags/jackrabbit-oak-1.0.9</developerConnection>
+    <url>http://svn.apache.org/viewvc/jackrabbit/oak/tags/jackrabbit-oak-1.0.9</url>
   </scm>
 
   <build>