You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2008/03/10 15:31:48 UTC

svn commit: r635566 - in /jackrabbit/trunk: jackrabbit-core/pom.xml jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java jackrabbit-jcr-benchmark/pom.xml pom.xml

Author: reschke
Date: Mon Mar 10 07:31:45 2008
New Revision: 635566

URL: http://svn.apache.org/viewvc?rev=635566&view=rev
Log:
JCR-1437: fix POMs (parent, artifact name), add dependency plus integration to jackrabbit-core.

Added:
    jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java   (with props)
Modified:
    jackrabbit/trunk/jackrabbit-core/pom.xml
    jackrabbit/trunk/jackrabbit-jcr-benchmark/pom.xml
    jackrabbit/trunk/pom.xml

Modified: jackrabbit/trunk/jackrabbit-core/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/pom.xml?rev=635566&r1=635565&r2=635566&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-core/pom.xml Mon Mar 10 07:31:45 2008
@@ -221,6 +221,11 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.apache.jackrabbit</groupId>
+      <artifactId>jackrabbit-jcr-benchmark</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
       <scope>test</scope>

Added: jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java?rev=635566&view=auto
==============================================================================
--- jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java (added)
+++ jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java Mon Mar 10 07:31:45 2008
@@ -0,0 +1,32 @@
+/*
+ * 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.
+ */
+package org.apache.jackrabbit.core.integration;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import org.apache.jackrabbit.benchmark.BenchmarkSuite;
+
+/**
+ * Test suite that includes all test suites from jackrabbit-jcr-benchmark.
+ */
+public class JCRBenchmark extends TestCase {
+
+    public static Test suite() {
+        return new BenchmarkSuite();
+    }
+
+}

Propchange: jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core/integration/JCRBenchmark.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jackrabbit/trunk/jackrabbit-jcr-benchmark/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-benchmark/pom.xml?rev=635566&r1=635565&r2=635566&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-jcr-benchmark/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-jcr-benchmark/pom.xml Mon Mar 10 07:31:45 2008
@@ -31,7 +31,7 @@
     <artifactId>jackrabbit</artifactId>
     <version>1.5-SNAPSHOT</version>
   </parent>
-  <artifactId>jackrabbit-jcr-benchmarks</artifactId>
+  <artifactId>jackrabbit-jcr-benchmark</artifactId>
   <name>Jackrabbit JCR Benchmarks</name>
   <description>JCR Benchmarks</description>
 

Modified: jackrabbit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/pom.xml?rev=635566&r1=635565&r2=635566&view=diff
==============================================================================
--- jackrabbit/trunk/pom.xml (original)
+++ jackrabbit/trunk/pom.xml Mon Mar 10 07:31:45 2008
@@ -753,6 +753,11 @@
       </dependency>
       <dependency>
         <groupId>org.apache.jackrabbit</groupId>
+        <artifactId>jackrabbit-jcr-benchmark</artifactId>
+        <version>1.5-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.jackrabbit</groupId>
         <artifactId>jackrabbit-webdav</artifactId>
         <version>1.5-SNAPSHOT</version>
       </dependency>