GPars.
The Groovy and Java high-level concurrency library offering actors, dataflow, CSP, agents, parallel collections, fork/join and more.
Here is the list of declaration for gpars. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.gpars</groupId> <artifactId>gpars</artifactId> <version>1.0.0</version> </dependency>
If you think this Maven repository POM file listing for gpars is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The gpars-1.0.0 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Network | netty 3.2.7.Final The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance and high scalability protocol servers and clients. In other words, Netty is a NIO client server framework which enab... | 8 |
The following table lists the most popular artifacts which are depending on gpars-1.0.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Groovy | groovy 2.1.1 Groovy: A powerful, dynamic language for the JVM | 5 |
Groovy | groovy 1.8.9 Groovy: A powerful, dynamic language for the JVM | 5 |
Groovy | groovy-all 2.1.0 Groovy: A powerful, dynamic language for the JVM | 23 |
Groovy | groovy-all 2.1.8 Groovy: A powerful, dynamic language for the JVM | 5 |
Groovy | groovy 2.0.6 Groovy: A powerful, dynamic language for the JVM | 6 |
Groovy | groovy 2.1.5 Groovy: A powerful, dynamic language for the JVM | 7 |
Groovy | groovy-all 2.0.6 Groovy: A powerful, dynamic language for the JVM | 22 |
Groovy | groovy-all 1.8.9 Groovy: A powerful, dynamic language for the JVM | 35 |
Groovy | groovy 2.1.0 Groovy: A powerful, dynamic language for the JVM | 5 |
Groovy | groovy-all 2.1.7 Groovy: A powerful, dynamic language for the JVM | 21 |
Groovy | groovy-all 2.1.6 Groovy: A powerful, dynamic language for the JVM | 7 |
Groovy | groovy 2.1.2 Groovy: A powerful, dynamic language for the JVM | 5 |
Groovy | groovy 2.2.0-beta-1 Groovy: A powerful, dynamic language for the JVM | 5 |
The following packages are defined in the gpars-1.0.0.jar
groovyx.gpars groovyx.gpars.activeobject groovyx.gpars.actor groovyx.gpars.actor.impl groovyx.gpars.agent groovyx.gpars.csp groovyx.gpars.csp.plugAndPlay groovyx.gpars.csp.util groovyx.gpars.dataflow groovyx.gpars.dataflow.expression groovyx.gpars.dataflow.impl groovyx.gpars.dataflow.operator groovyx.gpars.dataflow.operator.component groovyx.gpars.dataflow.stream groovyx.gpars.extra166y groovyx.gpars.forkjoin groovyx.gpars.group groovyx.gpars.memoize groovyx.gpars.pa groovyx.gpars.remote groovyx.gpars.remote.message groovyx.gpars.remote.netty groovyx.gpars.scheduler groovyx.gpars.serial groovyx.gpars.stm groovyx.gpars.util
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>org.codehaus.gpars</groupId> <artifactId>gpars</artifactId> <version>1.0.0</version> <name>GPars</name> <description>The Groovy and Java high-level concurrency library offering actors, dataflow, CSP, agents, parallel collections, fork/join and more</description> <url>http://gpars.codehaus.org</url> <inceptionYear>2009</inceptionYear> <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> <dependencies> <dependency> <groupId>org.codehaus.jcsp</groupId> <artifactId>jcsp</artifactId> <version>1.1-rc5</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.codehaus.jsr166-mirror</groupId> <artifactId>jsr166y</artifactId> <version>1.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.multiverse</groupId> <artifactId>multiverse-beta</artifactId> <version>0.7-RC-1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> <version>3.2.7.Final</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>