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 to...@apache.org on 2018/04/04 12:56:25 UTC

svn commit: r1828335 - in /jackrabbit/oak/trunk: ./ oak-search/ oak-search/src/ oak-search/src/main/ oak-search/src/main/java/ oak-search/src/main/java/org/ oak-search/src/main/java/org/apache/ oak-search/src/main/java/org/apache/jackrabbit/ oak-search...

Author: tommaso
Date: Wed Apr  4 12:56:24 2018
New Revision: 1828335

URL: http://svn.apache.org/viewvc?rev=1828335&view=rev
Log:
OAK-3336 - created (empty) oak-search module

Added:
    jackrabbit/oak/trunk/oak-search/
    jackrabbit/oak/trunk/oak-search/pom.xml   (with props)
    jackrabbit/oak/trunk/oak-search/src/
    jackrabbit/oak/trunk/oak-search/src/main/
    jackrabbit/oak/trunk/oak-search/src/main/java/
    jackrabbit/oak/trunk/oak-search/src/main/java/org/
    jackrabbit/oak/trunk/oak-search/src/main/java/org/apache/
    jackrabbit/oak/trunk/oak-search/src/main/java/org/apache/jackrabbit/
    jackrabbit/oak/trunk/oak-search/src/main/java/org/apache/jackrabbit/oak/
    jackrabbit/oak/trunk/oak-search/src/main/java/org/apache/jackrabbit/oak/plugins/
    jackrabbit/oak/trunk/oak-search/src/main/java/org/apache/jackrabbit/oak/plugins/index/
    jackrabbit/oak/trunk/oak-search/src/test/
    jackrabbit/oak/trunk/oak-search/src/test/java/
    jackrabbit/oak/trunk/oak-search/src/test/java/org/
    jackrabbit/oak/trunk/oak-search/src/test/java/org/apache/
    jackrabbit/oak/trunk/oak-search/src/test/java/org/apache/jackrabbit/
    jackrabbit/oak/trunk/oak-search/src/test/java/org/apache/jackrabbit/oak/
    jackrabbit/oak/trunk/oak-search/src/test/java/org/apache/jackrabbit/oak/plugins/
    jackrabbit/oak/trunk/oak-search/src/test/java/org/apache/jackrabbit/oak/plugins/index/
Modified:
    jackrabbit/oak/trunk/pom.xml

Added: jackrabbit/oak/trunk/oak-search/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-search/pom.xml?rev=1828335&view=auto
==============================================================================
--- jackrabbit/oak/trunk/oak-search/pom.xml (added)
+++ jackrabbit/oak/trunk/oak-search/pom.xml Wed Apr  4 12:56:24 2018
@@ -0,0 +1,127 @@
+<?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.10-SNAPSHOT</version>
+        <relativePath>../oak-parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>oak-search</artifactId>
+    <name>Oak Search</name>
+    <packaging>bundle</packaging>
+    <description>Oak search module for full text indexes</description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Export-Package>
+                            !*
+                        </Export-Package>
+                    </instructions>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>baseline</id>
+                        <goals>
+                            <goal>baseline</goal>
+                        </goals>
+                        <phase>pre-integration-test</phase>
+                        <configuration>
+                            <!--
+                              This is required because there's no prior (stable) version of oak-search-mt.
+                              This should be removed post 1.8 release
+                              Anyway nothing is exported therefore it shouldn't be a problem
+                            -->
+                            <skip>true</skip>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+            </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.osgi</groupId>
+            <artifactId>org.osgi.annotation</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-commons</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Logging -->
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Findbugs annotations -->
+        <dependency>
+            <groupId>com.google.code.findbugs</groupId>
+            <artifactId>jsr305</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <!-- Test Dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-core</artifactId>
+            <version>1.10.19</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+</project>
+

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

Modified: jackrabbit/oak/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/pom.xml?rev=1828335&r1=1828334&r2=1828335&view=diff
==============================================================================
--- jackrabbit/oak/trunk/pom.xml (original)
+++ jackrabbit/oak/trunk/pom.xml Wed Apr  4 12:56:24 2018
@@ -55,6 +55,7 @@
 
     <module>oak-upgrade</module>
     <module>oak-http</module>
+    <module>oak-search</module>
     <module>oak-lucene</module>
     <module>oak-solr-core</module>
     <module>oak-solr-osgi</module>