MVN

pl.edu.icm.pcj : pcj

Maven & Gradle

Dec 21, 2022
21 stars

PCJ · PCJ is Java library for parallel computing in Java. It is based on the PGAS (Partitioned Global Address Space) paradigm. It allows for easy implementation in Java of any parallel algorithm. PCJ application can be run on laptop, workstation, cluster and HPC system including large supercomputers.

<dependency>
    <groupId>pl.edu.icm.pcj</groupId>
    <artifactId>pcj</artifactId>
    <version>5.3.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of pl.edu.icm.pcj : pcj to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 5.3.2

All Versions

Choose a version of pl.edu.icm.pcj : pcj to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
5.3.x
pcj-5.3.2
pcj-5.3.1
pcj-5.3.0
5.2.x
pcj-5.2.0
5.1.x
pcj-5.1.0
5.0.x
pcj-5.0.9
pcj-5.0.8
pcj-5.0.7
pcj-5.0.6

How to add a dependency to Maven

Add the following pl.edu.icm.pcj : pcj maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>pl.edu.icm.pcj</groupId>
    <artifactId>pcj</artifactId>
    <version>5.3.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following pl.edu.icm.pcj : pcj gradle dependency to your build.gradle file:

implementation 'pl.edu.icm.pcj:pcj:5.3.2'

Gradle Kotlin DSL: Add the following pl.edu.icm.pcj : pcj gradle kotlin dependency to your build.gradle.kts file:

implementation("pl.edu.icm.pcj:pcj:5.3.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following pl.edu.icm.pcj : pcj sbt scala dependency to your build.sbt file:

libraryDependencies += "pl.edu.icm.pcj" % "pcj" % "5.3.2"