| <!-- |
| 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.vxquery</groupId> |
| <artifactId>apache-vxquery</artifactId> |
| <version>0.7-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>apache-vxquery-core</artifactId> |
| <packaging>jar</packaging> |
| <name>VXQuery Core</name> |
| <description>Apache VXQuery Processor</description> |
| |
| <distributionManagement> |
| <site> |
| <id>vxquery.website</id> |
| <name>VXQuery Website</name> |
| <url>file:../site/vxquery-core/</url> |
| </site> |
| </distributionManagement> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>javacc-maven-plugin</artifactId> |
| <version>2.6</version> |
| <executions> |
| <execution> |
| <id>javacc</id> |
| <goals> |
| <goal>javacc</goal> |
| </goals> |
| <configuration> |
| <isStatic>false</isStatic> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>generate-code</id> |
| <phase>generate-sources</phase> |
| <configuration> |
| <target> |
| <ant antfile="build-xslt.xml" target="build"> |
| <property name="build.gen-src.dir" value="${project.build.directory}/generated-sources/main/java" /> |
| <property name="src.code.dir" value="${basedir}/src/main/java" /> |
| <property name="xslt.dir" value="${basedir}/src/main/xslt" /> |
| <property name="classpath.xslt" refid="maven.compile.classpath" /> |
| </ant> |
| </target> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>generate-site</id> |
| <phase>pre-site</phase> |
| <configuration> |
| <target> |
| <ant antfile="build-site.xml" target="build"> |
| <property name="build.gen-site.dir" value="${project.build.directory}/generated-site/apt" /> |
| <property name="src.code.dir" value="${basedir}/src/main/java" /> |
| <property name="xslt.dir" value="${basedir}/src/main/xslt" /> |
| <property name="classpath.xslt" refid="maven.compile.classpath" /> |
| </ant> |
| </target> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>build-helper-maven-plugin</artifactId> |
| <version>1.7</version> |
| <executions> |
| <execution> |
| <id>add-source</id> |
| <phase>generate-sources</phase> |
| <goals> |
| <goal>add-source</goal> |
| </goals> |
| <configuration> |
| <sources> |
| <directory> |
| ${project.build.directory}/generated-sources/main/java |
| </directory> |
| </sources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| </configuration> |
| </plugin> |
| <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> |
| </plugin> --> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <!--This plugin's configuration is used to store Eclipse m2e settings |
| only. It has no influence on the Maven build itself. --> |
| <plugin> |
| <groupId>org.eclipse.m2e</groupId> |
| <artifactId>lifecycle-mapping</artifactId> |
| <version>1.0.0</version> |
| <configuration> |
| <lifecycleMappingMetadata> |
| <pluginExecutions> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <versionRange>[1.6,)</versionRange> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore /> |
| </action> |
| </pluginExecution> |
| <pluginExecution> |
| <pluginExecutionFilter> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>javacc-maven-plugin</artifactId> |
| <versionRange>[2.6,)</versionRange> |
| <goals> |
| <goal>javacc</goal> |
| </goals> |
| </pluginExecutionFilter> |
| <action> |
| <ignore /> |
| </action> |
| </pluginExecution> |
| </pluginExecutions> |
| </lifecycleMappingMetadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>algebricks-compiler</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>algebricks-data</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>hyracks-api</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>hyracks-data-std</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>hyracks-dataflow-common</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>hyracks-dataflow-std</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>hyracks-hdfs-2.x</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hyracks</groupId> |
| <artifactId>hyracks-hdfs-core</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>ant</groupId> |
| <artifactId>ant-trax</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.codehaus.woodstox</groupId> |
| <artifactId>stax2-api</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.codehaus.woodstox</groupId> |
| <artifactId>woodstox-core-asl</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>xalan</groupId> |
| <artifactId>serializer</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>activemq</groupId> |
| <artifactId>activemq-transport-xstream</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.thoughtworks.xstream</groupId> |
| <artifactId>xstream</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.fasterxml.jackson.core</groupId> |
| <artifactId>jackson-core</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-io</groupId> |
| <artifactId>commons-io</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <artifactId>lucene-core</artifactId> |
| <groupId>org.apache.lucene</groupId> |
| <type>jar</type> |
| <version>5.5.1</version> |
| </dependency> |
| <dependency> |
| <artifactId>lucene-queryparser</artifactId> |
| <groupId>org.apache.lucene</groupId> |
| <type>jar</type> |
| <version>5.5.1</version> |
| </dependency> |
| <dependency> |
| <artifactId>lucene-analyzers-common</artifactId> |
| <groupId>org.apache.lucene</groupId> |
| <type>jar</type> |
| <version>5.5.1</version> |
| </dependency> |
| <dependency> |
| <artifactId>lucene-demo</artifactId> |
| <groupId>org.apache.lucene</groupId> |
| <type>jar</type> |
| <version>5.5.1</version> |
| </dependency> |
| <dependency> |
| <artifactId>lucene-backward-codecs</artifactId> |
| <groupId>org.apache.lucene</groupId> |
| <type>jar</type> |
| <version>5.5.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-mapreduce-client-core</artifactId> |
| <version>2.7.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-common</artifactId> |
| <version>2.7.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-hdfs</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <reporting> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>javacc-maven-plugin</artifactId> |
| <version>2.6</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-report-plugin</artifactId> |
| <version>2.12.4</version> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-project-info-reports-plugin</artifactId> |
| <reportSets> |
| <reportSet> |
| <reports> |
| <report>index</report> |
| <report>dependencies</report> |
| <report>plugins</report> |
| </reports> |
| </reportSet> |
| </reportSets> |
| <configuration> |
| <linkOnly>true</linkOnly> |
| <dependencyLocationsEnabled>false</dependencyLocationsEnabled> |
| </configuration> |
| </plugin> |
| <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> |
| <version>2.5.2</version> <configuration> <effort>Min</effort> <threshold>Normal</threshold> |
| <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> </configuration> |
| </plugin> --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>2.9</version> |
| <configuration> |
| <notimestamp>true</notimestamp> |
| <maxmemory>2g</maxmemory> |
| </configuration> |
| </plugin> |
| </plugins> |
| </reporting> |
| </project> |