persistent-queue-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.javakaffee</groupId>
<artifactId>persistent-queue-project</artifactId>
<version>1.1</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> <!-- To be able to deploy snapshots/releases to sonatype / maven central: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>de.javakaffee</groupId> <artifactId>persistent-queue-project</artifactId> <version>1.1</version> <packaging>pom</packaging> <name>persistent queue project</name> <description>A simple reliable, persistent queue.</description> <url>https://github.com/magro/persistent-queue</url> <issueManagement> <system>github.com</system> <url>https://github.com/magro/persistent-queue/issues</url> </issueManagement> <inceptionYear>2010</inceptionYear> <prerequisites> <maven>2.0.9</maven> </prerequisites> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:magro/persistent-queue.git</connection> <developerConnection>scm:git:git@github.com:magro/persistent-queue.git</developerConnection> <url>git@github.com:magro/persistent-queue.git</url> </scm> <developers> <developer> <id>martin.grotzke</id> <name>Martin Grotzke</name> <email>martin.grotzke@googlecode.com</email> <roles> <role>owner</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <inherited>true</inherited> <configuration> <source>1.6</source> <target>1.6</target> <encoding>utf-8</encoding> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <excludeDefaults>true</excludeDefaults> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.3.1</version> <reportSets> <reportSet> <id>sunlink</id> <reports> <report>javadoc</report> </reports> <inherited>true</inherited> <configuration> <links> <link>http://download.oracle.com/javase/6/docs/api/</link> </links> </configuration> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.3.2</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <threshold>Normal</threshold> <!-- High|Normal|Low|Exp|Ignore --> <effort>Max</effort><!-- Min|Default|Max --> <onlyAnalyze>de.javakaffee.validation.-</onlyAnalyze> <debug>false</debug> </configuration> </plugin> </plugins> </reporting> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j.version>1.5.8</slf4j.version> </properties> <modules> <module>core</module> <module>tools</module> </modules> <dependencyManagement> <dependencies> </dependencies> </dependencyManagement> </project>