taskqueue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.spikeify</groupId>
<artifactId>taskqueue</artifactId>
<version>0.2.33</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.spikeify</groupId>
<artifactId>taskqueue</artifactId>
<version>0.2.33</version>
<packaging>jar</packaging>
<name>Spikeify Taskqueue</name>
<description>Taskqueue service utilizing Spikeify with Aerospike database</description>
<url>https://github.com/Spikeify/spikeify-taskqueue</url>
<inceptionYear>2015</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.spikeify>[0.2.33, 0.3)</version.spikeify>
<version.fasterxml.jackson>2.6.0-rc3</version.fasterxml.jackson>
<version.logback>1.1.3</version.logback>
<version.junit>4.12</version.junit>
<version.mockito-all>1.10.8</version.mockito-all>
<version.trajano>1.0.1</version.trajano>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/Spikeify/spikeify-taskqueue</url>
<connection>scm:git:git://github.com/Spikeify/spikeify-taskqueue.git</connection>
<developerConnection>scm:git:git@github.com/Spikeify/spikeify-taskqueue.git</developerConnection>
</scm>
<developers>
<developer>
<name>Andrej Završnik</name>
<email>andrej@zavrsnik.si</email>
<id>drejc</id>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.spikeify</groupId>
<artifactId>core</artifactId>
<version>${version.spikeify}</version>
</dependency>
<!-- LOGGER -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.logback}</version>
</dependency>
<!--JSON serialization-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${version.fasterxml.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${version.fasterxml.jackson}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${version.fasterxml.jackson}</version>
</dependency>
<!--Testing stuff bellow-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.trajano.commons</groupId>
<artifactId>commons-testing</artifactId>
<version>${version.trajano}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${version.mockito-all}</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>local_deployment</id>
<name>Internal Releases</name>
<url>http://nexus.iddiction.com/content/repositories/releases/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
<extensions>true</extensions>
<configuration>
<!-- for production deployment -->
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<!-- end for production deployment -->
<!-- for local deployment -->
<!-- <serverId>local_deployment</serverId> -->
<!-- end of for local deployment -->
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>Spikeify Team</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>