| <!-- |
| 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.5-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>apache-vxquery-server</artifactId> |
| <packaging>jar</packaging> |
| <name>VXQuery Server</name> |
| <description>Apache VXQuery Server</description> |
| |
| <distributionManagement> |
| <site> |
| <id>vxquery.website</id> |
| <name>VXQuery Website</name> |
| <url>file:../site/vxquery-server/</url> |
| </site> |
| </distributionManagement> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>appassembler-maven-plugin</artifactId> |
| <version>1.1.1</version> |
| <executions> |
| <execution> |
| <configuration> |
| <programs> |
| <program> |
| <mainClass>org.apache.vxquery.cli.VXQueryClusterShutdown</mainClass> |
| <name>vxqueryshutdown</name> |
| </program> |
| <program> |
| <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass> |
| <name>vxquerycc</name> |
| </program> |
| <program> |
| <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass> |
| <name>vxquerync</name> |
| </program> |
| </programs> |
| <repositoryLayout>flat</repositoryLayout> |
| <repositoryName>lib</repositoryName> |
| </configuration> |
| <phase>package</phase> |
| <goals> |
| <goal>assemble</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.5</version> |
| <executions> |
| <execution> |
| <id>copy-scripts</id> |
| <phase>package</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>target/appassembler/bin</outputDirectory> |
| <resources> |
| <resource> |
| <directory>src/main/resources/scripts</directory> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| <execution> |
| <id>copy-conf</id> |
| <phase>package</phase> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>target/appassembler/conf</outputDirectory> |
| <resources> |
| <resource> |
| <directory>src/main/resources/conf</directory> |
| </resource> |
| </resources> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.4</version> |
| <executions> |
| <execution> |
| <configuration> |
| <descriptors> |
| <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| </descriptors> |
| </configuration> |
| <phase>package</phase> |
| <goals> |
| <goal>attached</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>generate-site</id> |
| <phase>none</phase> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.vxquery</groupId> |
| <artifactId>apache-vxquery-core</artifactId> |
| <version>0.5-SNAPSHOT</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>edu.uci.ics.hyracks</groupId> |
| <artifactId>hyracks-control-cc</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>edu.uci.ics.hyracks</groupId> |
| <artifactId>hyracks-control-nc</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <reporting> |
| <plugins> |
| <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> |
| </plugins> |
| </reporting> |
| </project> |