Maven Repository - POM file for Virtual Machine quasar-core 0.6.0 0.6.0

Summary

quasar-core.

lightweight threads and actors for the JVM..

Declaration

Here is the list of declaration for quasar-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>co.paralleluniverse</groupId>
   <artifactId>quasar-core</artifactId>
   <version>0.6.0</version>
</dependency>

If you think this Maven repository POM file listing for quasar-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:The GNU Lesser General Public License, version 3
URL: http://www.gnu.org/licenses/lgpl-3.0.txtName:Eclipse Public License - v 1.0
URL: http://www.eclipse.org/legal/epl-v10.html.





Depends on

The quasar-core-0.6.0 has 16 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Librarydisruptor 3.2.1
Disruptor - Concurrent Programming Framework
23
JUnitjunit 4.11
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
2031
Developmentmetrics-core 3.0.2
Metrics is a Java library which gives you unparalleled insight into what your code does in production. Metrics provides a powerful toolkit of ways to measure the behavior of critical components in your production environment.
42
Java Libraryguava 17.0
Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. Guava has only one code dependency - javax.annotation, per the JSR-305 spec.
149
Testinghamcrest-all 1.3
A self-contained hamcrest jar containing all of the sub-modules in a single artifact.
91
Testing Mockmockito-all 1.9.5
Mock objects library for java
1072

Packages

The following packages are defined in the quasar-core-0.6.0.jar

co.paralleluniverse.common.benchmark
co.paralleluniverse.common.classloader
co.paralleluniverse.common.logging
co.paralleluniverse.common.monitoring
co.paralleluniverse.common.reflection
co.paralleluniverse.common.util
co.paralleluniverse.concurrent.forkjoin
co.paralleluniverse.concurrent.util
co.paralleluniverse.fibers
co.paralleluniverse.fibers.futures
co.paralleluniverse.fibers.instrument
co.paralleluniverse.fibers.io
co.paralleluniverse.io.serialization
co.paralleluniverse.io.serialization.kryo
co.paralleluniverse.remote
co.paralleluniverse.strands
co.paralleluniverse.strands.channels
co.paralleluniverse.strands.channels.disruptor
co.paralleluniverse.strands.concurrent
co.paralleluniverse.strands.dataflow
co.paralleluniverse.strands.queues
jsr166e
jsr166e.extra
org.HdrHistogram
org.cliffc.high_scale_lib




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>co.paralleluniverse</groupId>
  <artifactId>quasar-core</artifactId>
  <version>0.6.0</version>
  <name>quasar-core</name>
  <description>lightweight threads and actors for the JVM.</description>
  <url>http://puniverse.github.com/quasar</url>
  <licenses>
    <license>
      <name>The GNU Lesser General Public License, version 3</name>
      <url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>Eclipse Public License - v 1.0</name>
      <url>http://www.eclipse.org/legal/epl-v10.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  
  <scm>
    <connection>https://github.com/puniverse/quasar.git</connection>
    <developerConnection>https://github.com/puniverse/quasar.git</developerConnection>
    <url>https://github.com/puniverse/quasar</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-commons</artifactId>
      <version>5.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.lmax</groupId>
      <artifactId>disruptor</artifactId>
      <version>3.2.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm</artifactId>
      <version>5.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.truth0</groupId>
      <artifactId>truth</artifactId>
      <version>0.22</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>de.javakaffee</groupId>
      <artifactId>kryo-serializers</artifactId>
      <version>0.26</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>com.esotericsoftware.kryo</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.codahale.metrics</groupId>
      <artifactId>metrics-core</artifactId>
      <version>3.0.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.openjdk.jmh</groupId>
      <artifactId>jmh-core</artifactId>
      <version>0.9.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>17.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-analysis</artifactId>
      <version>5.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-all</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.ow2.asm</groupId>
      <artifactId>asm-util</artifactId>
      <version>5.0.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.esotericsoftware.kryo</groupId>
      <artifactId>kryo</artifactId>
      <version>2.24.0</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.ow2.asm</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>*</artifactId>
          <groupId>org.ow2.asm</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.openjdk.jmh</groupId>
      <artifactId>jmh-generator-annprocess</artifactId>
      <version>0.9.3</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.9.4</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>