paperdoll-queue
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.m50d</groupId>
<artifactId>paperdoll-queue</artifactId>
<version>0.5</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.m50d</groupId>
<artifactId>paperdoll-aggregator</artifactId>
<version>0.5</version>
</parent>
<artifactId>paperdoll-queue</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<configuration>
<!-- Scaladoc interacts poorly with kind-projector -->
<excludes>
<exclude>paperdoll/queue/MiniQueue.scala</exclude>
<exclude>paperdoll/queue/Queue.scala</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.scalaz</groupId>
<artifactId>scalaz-core${scala.suffix}</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
</dependency>
</dependencies>
</project>