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:01:13 UTC

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

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

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

Initial multi-module setup.

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

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

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

Added: jackrabbit/oak/trunk/oak-bench/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-bench/pom.xml?rev=1297458&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-bench/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-bench/pom.xml Tue Mar  6 13:01:13 2012
@@ -0,0 +1,37 @@
+<?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-bench</artifactId>
+  <name>Oak Benchmark</name>
+
+</project>

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

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

Added: jackrabbit/oak/trunk/oak-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/pom.xml?rev=1297458&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-core/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-core/pom.xml Tue Mar  6 13:01:13 2012
@@ -0,0 +1,37 @@
+<?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-core</artifactId>
+  <name>Oak Core</name>
+
+</project>

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

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

Added: jackrabbit/oak/trunk/oak-it/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-it/pom.xml?rev=1297458&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-it/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-it/pom.xml Tue Mar  6 13:01:13 2012
@@ -0,0 +1,37 @@
+<?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-it</artifactId>
+  <name>Oak Integration Tests</name>
+
+</project>

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

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

Added: jackrabbit/oak/trunk/oak-run/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-run/pom.xml?rev=1297458&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-run/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-run/pom.xml Tue Mar  6 13:01:13 2012
@@ -0,0 +1,37 @@
+<?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-run</artifactId>
+  <name>Oak Runnable Jar</name>
+
+</project>

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

Added: jackrabbit/oak/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/pom.xml?rev=1297458&view=auto
==============================================================================
--- jackrabbit/oak/trunk/pom.xml (added)
+++ jackrabbit/oak/trunk/pom.xml Tue Mar  6 13:01:13 2012
@@ -0,0 +1,72 @@
+<?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</artifactId>
+  <name>Jackrabbit Oak</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>oak-core</module>
+    <module>oak-run</module>
+    <module>oak-it</module>
+    <module>oak-bench</module>
+  </modules>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/oak/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/oak/trunk</developerConnection>
+    <url>http://svn.apache.org/viewvc/jackrabbit/oak/trunk</url>
+  </scm>
+
+  <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>
+          <excludes>
+            <exclude>release.properties</exclude>
+            <exclude>.git/**</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

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