MVN

de.ovgu.dke.mocca : mocca-core

Maven & Gradle

Apr 16, 2013
2 usages

MOCCA-core · MOCCA is the Message-Oriented Command and Context Architecture, providing a GLUE middle-ware that allows sending commands to a peer which are executed by state-less handlers in a specific context. In contrast to the Request-Response scheme the message flow is not fixed by the framework. This allows to implement different communication paradigms (including Request-Response). The whole system can be seen as an automaton with Messages that trigger state transitions in the local Contexts. This library contains the core components, including the GLUE-based implementation.

<dependency>
    <groupId>de.ovgu.dke.mocca</groupId>
    <artifactId>mocca-core</artifactId>
    <version>0.1.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.ovgu.dke.mocca : mocca-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.1.2

All Versions

Choose a version of de.ovgu.dke.mocca : mocca-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.1.x
mocca-core-0.1.2
mocca-core-0.1.1

How to add a dependency to Maven

Add the following de.ovgu.dke.mocca : mocca-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.ovgu.dke.mocca</groupId>
    <artifactId>mocca-core</artifactId>
    <version>0.1.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.ovgu.dke.mocca : mocca-core gradle dependency to your build.gradle file:

implementation 'de.ovgu.dke.mocca:mocca-core:0.1.2'

Gradle Kotlin DSL: Add the following de.ovgu.dke.mocca : mocca-core gradle kotlin dependency to your build.gradle.kts file:

implementation("de.ovgu.dke.mocca:mocca-core:0.1.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.ovgu.dke.mocca : mocca-core sbt scala dependency to your build.sbt file:

libraryDependencies += "de.ovgu.dke.mocca" % "mocca-core" % "0.1.2"

Advertisement