sherpa-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.revelytix</groupId>
<artifactId>sherpa-java</artifactId>
<version>0.1.7</version>
</dependency><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>com.revelytix</groupId>
<artifactId>spark</artifactId>
<version>0.1.7</version>
</parent>
<groupId>com.revelytix</groupId>
<artifactId>sherpa-java</artifactId>
<version>0.1.7</version>
<packaging>jar</packaging>
<name>sherpa-java - SHERPA sparql protocol client</name>
<description>Defines a SPARQL client API implementation using the SHERPA fast protocol for client-server communication. Requires a SHERPA-enabled server.</description>
<url>https://github.com/revelytix/spark</url>
<inceptionYear>2011</inceptionYear>
<scm>
<connection>scm:git:https://github.com/revelytix/spark/sherpa-java</connection>
<url>https://github.com/revelytix/spark/sherpa-java</url>
</scm>
<organization>
<name>Revelytix Inc.</name>
<url>http://revelytix.com</url>
</organization>
<developers>
<developer>
<id>amiller</id>
<name>Alex Miller</name>
<email>amiller@revelytix.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<avro-version>1.5.4</avro-version>
<sherpa-version>${project.version}</sherpa-version>
<spark-version>0.1.7</spark-version>
<slf4j-version>1.6.1</slf4j-version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro-ipc</artifactId>
<version>${avro-version}</version>
</dependency>
<dependency>
<groupId>com.revelytix</groupId>
<artifactId>sherpa-protocol</artifactId>
<version>${sherpa-version}</version>
</dependency>
<dependency>
<groupId>com.revelytix</groupId>
<artifactId>spark-api</artifactId>
<version>${spark-version}</version>
</dependency>
<dependency>
<groupId>com.revelytix</groupId>
<artifactId>spark-spi</artifactId>
<version>${spark-version}</version>
</dependency>
<dependency>
<groupId>com.revelytix</groupId>
<artifactId>spark-spi</artifactId>
<version>${spark-version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<!--
Copyright 2011 Revelytix, Inc.
Licensed 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.
-->