blob: 26d8afc6abdaf7592e6910ededfde39a79b1bb77 [file] [log] [blame]
<?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/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.apache.rya</groupId>
<artifactId>rya.pcj.fluo.parent</artifactId>
<version>3.2.10-incubating</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>rya.pcj.fluo.demo</artifactId>
<name>Apache Rya PCJ Fluo Demo</name>
<description>
A demo application that shows how the Fluo application is able to maintain
Rya Precomputed Joins using historic Statements while streaming new Statements.
</description>
<dependencies>
<!-- Rya Runtime Dependencies. -->
<dependency>
<groupId>org.apache.rya</groupId>
<artifactId>rya.pcj.fluo.api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.rya</groupId>
<artifactId>rya.indexing</artifactId>
</dependency>
<!-- 3rd Party Runtime Dependencies. -->
<dependency>
<groupId>org.openrdf.sesame</groupId>
<artifactId>sesame-queryrender</artifactId>
</dependency>
<dependency>
<groupId>org.apache.fluo</groupId>
<artifactId>fluo-mini</artifactId>
</dependency>
<dependency>
<groupId>org.apache.accumulo</groupId>
<artifactId>accumulo-minicluster</artifactId>
<!-- Note: accumulo-minicluster is normally used for testing purposes
But we are using it for an example in this project -->
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Use the pre-build 'jar-with-dependencies' assembly to package the dependent class files into the final jar.
This creates a jar file that can be deployed to Fluo without having to include any dependent jars. -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.apache.rya.indexing.pcj.fluo.demo.DemoDriver</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>