You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2012/03/06 14:40:02 UTC

svn commit: r1297471 - in /jackrabbit/oak/trunk: oak-bench/pom.xml oak-core/pom.xml oak-it/pom.xml oak-parent/ oak-parent/pom.xml oak-run/pom.xml pom.xml

Author: jukka
Date: Tue Mar  6 13:40:01 2012
New Revision: 1297471

URL: http://svn.apache.org/viewvc?rev=1297471&view=rev
Log:
OAK-1: Setup basic build structure

Add a parent POM for Oak.

Added:
    jackrabbit/oak/trunk/oak-parent/   (with props)
    jackrabbit/oak/trunk/oak-parent/pom.xml   (with props)
Modified:
    jackrabbit/oak/trunk/oak-bench/pom.xml
    jackrabbit/oak/trunk/oak-core/pom.xml
    jackrabbit/oak/trunk/oak-it/pom.xml
    jackrabbit/oak/trunk/oak-run/pom.xml
    jackrabbit/oak/trunk/pom.xml

Modified: jackrabbit/oak/trunk/oak-bench/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-bench/pom.xml?rev=1297471&r1=1297470&r2=1297471&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-bench/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-bench/pom.xml Tue Mar  6 13:40:01 2012
@@ -24,14 +24,17 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>apache</artifactId>
-    <version>10</version>
-    <relativePath/>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>oak-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 
-  <groupId>org.apache.jackrabbit</groupId>
   <artifactId>oak-bench</artifactId>
   <name>Oak Benchmark</name>
 
+  <properties>
+    <skip.deployment>true</skip.deployment>
+  </properties>
+
 </project>

Modified: jackrabbit/oak/trunk/oak-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/pom.xml?rev=1297471&r1=1297470&r2=1297471&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-core/pom.xml Tue Mar  6 13:40:01 2012
@@ -24,13 +24,12 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>apache</artifactId>
-    <version>10</version>
-    <relativePath/>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>oak-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 
-  <groupId>org.apache.jackrabbit</groupId>
   <artifactId>oak-core</artifactId>
   <name>Oak Core</name>
 

Modified: jackrabbit/oak/trunk/oak-it/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-it/pom.xml?rev=1297471&r1=1297470&r2=1297471&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-it/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-it/pom.xml Tue Mar  6 13:40:01 2012
@@ -24,14 +24,17 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>apache</artifactId>
-    <version>10</version>
-    <relativePath/>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>oak-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 
-  <groupId>org.apache.jackrabbit</groupId>
   <artifactId>oak-it</artifactId>
   <name>Oak Integration Tests</name>
 
+  <properties>
+    <skip.deployment>true</skip.deployment>
+  </properties>
+
 </project>

Propchange: jackrabbit/oak/trunk/oak-parent/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Mar  6 13:40:01 2012
@@ -0,0 +1,5 @@
+target
+.*
+*.iml
+*.ipr
+*.iws

Added: jackrabbit/oak/trunk/oak-parent/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-parent/pom.xml?rev=1297471&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-parent/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-parent/pom.xml Tue Mar  6 13:40:01 2012
@@ -0,0 +1,70 @@
+<?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</groupId>
+    <artifactId>apache</artifactId>
+    <version>10</version>
+    <relativePath/>
+  </parent>
+
+  <groupId>org.apache.jackrabbit</groupId>
+  <artifactId>oak-parent</artifactId>
+  <name>Oak Parent POM</name>
+  <version>0.1-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <properties>
+    <skip.deployment>false</skip.deployment>
+  </properties>
+
+  <issueManagement>
+    <system>Jira</system>
+    <url>http://issues.apache.org/jira/browse/OAK</url>
+  </issueManagement>
+
+  <url>http://jackrabbit.apache.org/</url>
+  <inceptionYear>2012</inceptionYear>
+  <description>
+    The goal of the Oak effort within the Apache Jackrabbit™ project is
+    to implement a scalable and performant hierarchical content repository
+    for use as the foundation of modern world-class web sites and other
+    demanding content applications.
+  </description>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <configuration>
+            <skip>${skip.deployment}</skip>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+
+</project>

Propchange: jackrabbit/oak/trunk/oak-parent/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jackrabbit/oak/trunk/oak-run/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-run/pom.xml?rev=1297471&r1=1297470&r2=1297471&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-run/pom.xml (original)
+++ jackrabbit/oak/trunk/oak-run/pom.xml Tue Mar  6 13:40:01 2012
@@ -24,14 +24,17 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>apache</artifactId>
-    <version>10</version>
-    <relativePath/>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>oak-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <relativePath>../oak-parent/pom.xml</relativePath>
   </parent>
 
-  <groupId>org.apache.jackrabbit</groupId>
   <artifactId>oak-run</artifactId>
   <name>Oak Runnable Jar</name>
 
+  <properties>
+    <skip.deployment>true</skip.deployment>
+  </properties>
+
 </project>

Modified: jackrabbit/oak/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/pom.xml?rev=1297471&r1=1297470&r2=1297471&view=diff
==============================================================================
--- jackrabbit/oak/trunk/pom.xml (original)
+++ jackrabbit/oak/trunk/pom.xml Tue Mar  6 13:40:01 2012
@@ -24,18 +24,22 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.apache</groupId>
-    <artifactId>apache</artifactId>
-    <version>10</version>
-    <relativePath/>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>oak-parent</artifactId>
+    <version>0.1-SNAPSHOT</version>
+    <relativePath>oak-parent/pom.xml</relativePath>
   </parent>
 
-  <groupId>org.apache.jackrabbit</groupId>
   <artifactId>oak</artifactId>
   <name>Jackrabbit Oak</name>
   <packaging>pom</packaging>
 
+  <properties>
+    <skip.deployment>true</skip.deployment>
+  </properties>
+
   <modules>
+    <module>oak-parent</module>
     <module>oak-core</module>
     <module>oak-run</module>
     <module>oak-it</module>
@@ -51,12 +55,6 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-deploy-plugin</artifactId>
-        <configuration>
-          <skip>true</skip>
-        </configuration>
-      </plugin>
-      <plugin>
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>