<?xml version="1.0" encoding="UTF-8"?>

<!--
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->

<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.xwiki.platform</groupId>
    <artifactId>xwiki-platform-search-solr-server</artifactId>
    <version>7.3</version>
  </parent>
  <artifactId>xwiki-platform-search-solr-server-data</artifactId>
  <name>XWiki Plarform - Search - SOLR - Server - Data</name>
  <packaging>jar</packaging>
  <description>A package containing SOLR configuration for XWiki</description>
  <properties>
    <!-- Does not contain a single line of Java and clirr seems to have issue with dependency plugin and copy (probably related to https://jira.codehaus.org/browse/MDEP-291) -->
    <xwiki.clirr.skip>true</xwiki.clirr.skip>
  </properties>
  <dependencies>
    <dependency>
      <!-- This is needed at runtime by solrconfig.xml which is why we package below in the lib/ directory of the
           generatd JAR which will be used and transformed into a zip file in the xwiki-platform-search-solr-api
           module. -->
      <groupId>org.xwiki.platform</groupId>
      <artifactId>xwiki-platform-search-solr-server-plugin</artifactId>
      <version>${project.version}</version>
      <!-- We use "provided" so that this dep is not used transitively by Maven and thus doesn't find its way into
           our distribution's WEB-INF/lib directory. -->
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <!-- Add the plugin to the lib/ -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-plugin</id>
            <phase>process-resources</phase>
            <goals>
              <goal>copy</goal>
            </goals>
            <configuration>
              <artifactItems>
                <artifactItem>
                  <groupId>org.xwiki.platform</groupId>
                  <artifactId>xwiki-platform-search-solr-server-plugin</artifactId>
                  <version>${project.version}</version>
                  <type>jar</type>
                </artifactItem>
              </artifactItems>
              <outputDirectory>${project.build.outputDirectory}/lib/</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
